-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 KB
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
{
"name": "om-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.3",
"chart.js": "^2.7.2",
"deep-assign": "^2.0.0",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"immutability-helper": "^2.6.6",
"js-cookie": "^2.1.4",
"moment": "^2.21.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"react": "^16.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.0.0",
"react-mousetrap": "^0.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-modal": "^1.3.2",
"react-scripts": "^1.1.1",
"react-select": "^1.2.1",
"reactstrap": "^6.1.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"superagent": "^3.8.3"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"dev": "NODE_ENV=development PORT=3100 npm run start",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"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",
"clean": "rm -rf ./build && mkdir ./build",
"heroku-postbuild": "npm run clean && npm run build"
},
"devDependencies": {
"redux-devtools": "^3.4.1",
"redux-logger": "^3.0.6"
}
}