-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "bandicoot-starter",
"dependencies": {
"bandicoot": "^4.3.0",
"kremling": "^2.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"start": "webpack-dev-server",
"lint": "eslint src",
"build": "rimraf dist && webpack --mode=production && copyfiles src/index.html dist -f",
"build-pages": "rimraf dist && webpack --mode=production && copyfiles src/gh-pages-index.html dist -f && mv dist/gh-pages-index.html dist/index.html"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn pretty-quick --staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^11.0.0-beta.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"eslint": "^7.0.0",
"eslint-config-react-important-stuff": "^2.0.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}