-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "moviegram",
"version": "1.0.0",
"description": "Moviegram app",
"license": "MIT",
"author": "Adam Faryna (https://github.com/adamfaryna)",
"keywords": [
"react",
"javascript",
"react-redux",
"redux-saga",
"react-router"
],
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"analyze-bundle": "npm run build && npm run analyze",
"build-css": "node-sass-chokidar src/styles -o src/styles",
"watch-css": "npm run build-css && node-sass-chokidar src/styles/ -o src/styles/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"mock:server": "json-server --watch movies.json --port 3001",
"build:development": "env-cmd .env.development npm run build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.6",
"moment": "^2.24.0",
"react": "^16.5.2",
"react-app-polyfill": "^0.1.3",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.5",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.1",
"json-server": "^0.15.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"redux-devtools-extension": "^2.13.5",
"source-map-explorer": "^1.6.0"
}
}