-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
55
56
57
58
{
"name": "josh-website-in-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"animate.css": "^3.7.2",
"bootstrap": "^4.3.1",
"dompurify": "^1.0.11",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-burger-menu": "^2.6.11",
"react-dom": "^16.8.6",
"react-ga": "^2.7.0",
"react-google-recaptcha": "^2.0.0-rc.1",
"react-image-webp": "^0.6.0",
"react-media": "^1.9.2",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"react-scrollspy": "^3.4.2",
"react-slick": "^0.24.0",
"react-svg": "^10.0.19",
"reactstrap": "^8.0.1",
"sass": "^1.51.0",
"sass-flex-mixin": "^1.0.3",
"sass-rem": "^2.0.1",
"slick-carousel": "^1.8.1",
"styled-components": "^4.3.2"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"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": {
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5"
}
}