-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
49
50
51
52
{
"name": "ephtracking-api-assistant",
"version": "0.1.0",
"private": false,
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bulma": "^0.7.0",
"core-js": "^2.6.5",
"font-awesome": "^4.7.0",
"gh-pages": "^1.2.0",
"node-sass-chokidar": "^0.0.3",
"react": "^16.4.2",
"react-checkbox-tree": "^1.5.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.2",
"react-json-tree": "^0.11.2",
"react-router-dom": "^5.0.0",
"react-spinkit": "^3.0.0",
"serve": "^9.4.0"
},
"devDependencies": {
"axios-mock-adapter": "1.15.0",
"codecov": "3.0.4",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.4",
"eslint-plugin-prettier": "2.6.2",
"prettier": "1.14.0",
"react-scripts": "1.1.4",
"react-test-renderer": "16.4.2"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "yarn build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"now-start": "serve --single ./build",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/index.js",
"!src/registerServiceWorker.js"
]
}
}