-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "trv-venue-hotel-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.10",
"nuka-carousel": "^4.2.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"jest": "^23.2.0",
"jest-puppeteer": "^3.2.1",
"node-sass-chokidar": "1.3.0",
"npm-run-all": "4.1.3",
"puppeteer": "^1.5.0"
},
"scripts": {
"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",
"start-js": "PORT=4001 react-scripts start",
"dev": "npm-run-all -p watch-css start-js",
"start": "react-scripts start",
"build": "npm-run-all build-css && react-scripts build",
"test": "jest",
"eject": "react-scripts eject"
}
}