-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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": "movies-calendar",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21",
"bootstrap": "4.0.0-alpha.6",
"capitalize": "^1.0.0",
"humanize-number": "^0.0.2",
"lodash": "^4.17.4",
"moment": "^2.29.4",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.0.2",
"react": "^16.14.0",
"react-addons-css-transition-group": "^0.14.8",
"react-addons-transition-group": "^0.14.8",
"react-circular-progressbar": "^0.8.1",
"react-dom": "^16.14.0",
"react-image-lightbox": "^4.1.0",
"react-router-dom": "^4.1.1",
"react-scripts": "^4.0.3",
"react-youtube": "^7.4.0",
"reactstrap": "^8.9.0",
"slugify": "^1.1.0"
},
"optionalDependencies": {
"fsevents": "^2.1.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar ./src -o ./src --watch",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"prod": "NODE_ENV=production",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"engines": {
"node": "15.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}