-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
54 lines (54 loc) · 1.52 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "hotel-booking-app",
"version": "0.1.0",
"private": true,
"homepage": "https://shubhamd99.github.io/react-hotel-booking-app/",
"dependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.0.10",
"@types/react": "16.8.22",
"@types/react-dom": "16.8.4",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"styled-components": "^4.3.2",
"typescript": "3.5.2"
},
"scripts": {
"build:css": "node-sass src/assets/styles/sass/ -o src/assets/styles/css/",
"watch:css": "npm run build:css && node-sass src/assets/styles/sass/ -o src/assets/styles/css/ --watch --recursive",
"start:js": "react-scripts start",
"start": "npm-run-all -p watch:css start:js",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node-sass": "^4.11.0",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.16",
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5"
}
}