-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
28 lines (28 loc) · 1003 Bytes
/
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
{
"name": "paginating-react-demo",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.0",
"countries-api": "^2.0.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-flags": "^0.1.13",
"react-scripts": "1.1.4"
},
"scripts": {
"start:js": "react-scripts start",
"build:js": "react-scripts build",
"start": "npm-run-all -p watch:css start:js",
"build": "npm-run-all build:css build:js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build:css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch:css": "npm run build:css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive"
},
"devDependencies": {
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2"
}
}