-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 841 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 841 Bytes
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
{
"name": "react-workshop",
"version": "1.0.0",
"private": false,
"author": "inamullahtaj@gmail.com",
"scripts": {
"build:css": "node-sass-chokidar --include-path ./src/static/ src/ -o src/",
"watch:css": "yarn build:css --watch --recursive",
"start:js": "react-scripts start",
"start": "npm-run-all -p watch:css start:js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-loading": "^2.0.3",
"react-scripts": "^2.0.5",
"toastr": "^2.1.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}