-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "minesweeper",
"version": "0.1.0",
"private": true,
"homepage": "https://frankitox.github.io/minesweeper",
"dependencies": {
"connected-react-router": "^4.3.0",
"history": "^4.7.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"lodash.product": "^18.1.16",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.0",
"prettier": "^1.13.5",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"precommit": "lint-staged && npm run ci-test",
"start": "npm run build-css && react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"ci-test": "npm test -- --coverage",
"eject": "react-scripts eject"
},
"devDependencies": {
"gh-pages": "^1.2.0",
"npm-run-all": "^4.1.3"
}
}