-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1 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
{
"name": "jprdy",
"version": "0.5.0",
"private": true,
"dependencies": {
"node-sass-chokidar": "^2.0.0",
"npm-run-all": "^4.1.2",
"numeral": "^2.0.6",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"store": "^2.0.12"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"mocha": "^5.1.1",
"mock-local-storage": "^1.0.5",
"react-scripts": "1.0.17"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"test:custom": "mocha --require mock-local-storage ./src/*.test.js",
"eject": "react-scripts eject"
},
"engines": {
"yarn": "^1.3.2"
}
}