forked from KristenWilde/note-practice-app-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 KB
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
{
"name": "note_practice",
"version": "0.1.0",
"private": true,
"dependencies": {
"ajv": "^6.5.3",
"binary-extensions": "^1.12.0",
"chart.js": "^2.7.2",
"formik": "^1.3.0",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"lodash.range": "^3.2.0",
"node-sass-chokidar": "^1.3.3",
"normalize-package-data": "^2.4.0",
"npm-run-all": "^4.1.3",
"react": "^16.5.2",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.4.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"spdx-exceptions": "^2.1.0",
"spdx-license-ids": "^3.0.1",
"yup": "^0.26.6",
"webpack": "^4.19.1"
},
"scripts": {
"build-css": "node-sass-chokidar src/css -o src/css",
"watch-css": "npm run build-css && node-sass-chokidar src/css -o src/css --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 --watchAll",
"eject": "react-scripts eject",
"proxy": "http://localhost:4000"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1"
}
}