-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "react-boilerplate-snowpack",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/amravazzi/react-boilerplate-snowpack.git"
},
"license" : "MIT",
"files": [
"public/dist/**/*"
],
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "jest"
},
"dependencies": {
"@snowpack/plugin-sass": "^1.3.0",
"i18next": "^19.8.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.5",
"react-router-dom": "^5.2.0",
"store2": "^2.12.0"
},
"devDependencies": {
"@babel/preset-react": "^7.12.13",
"@snowpack/plugin-babel": "^2.1.6",
"@snowpack/plugin-dotenv": "^2.0.5",
"@snowpack/plugin-react-refresh": "^2.4.0",
"esbuild": "^0.8.36",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"serve": "^11.3.2",
"snowpack": "^3.0.11"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}