forked from InamTaj/react-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 744 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 744 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
{
"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.5",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-loading": "^2.0.2",
"react-scripts": "1.1.4",
"toastr": "^2.1.4"
}
}