-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "raidalerts",
"version": "0.1.0",
"private": true,
"devDependencies": {
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "0.9.0",
"watch": "^1.0.2"
},
"dependencies": {
"axios": "^0.15.3",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"i18next": "^7.1.1",
"react": "^15.4.2",
"react-addons-update": "^15.4.2",
"react-dom": "^15.4.2",
"react-i18next": "^2.2.0",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-form": "^6.6.1",
"redux-i18n": "^1.1.4",
"redux-logger": "^2.8.1",
"redux-mock-store": "^1.2.2",
"redux-saga": "^0.14.3",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.65.0"
},
"scripts": {
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-js": "react-scripts start",
"build-css": "node-sass src/styles -o src/build/styles",
"watch-css": "npm run build-css && node-sass src/styles -o src/build/styles -w -r",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"poststart": "npm run watch"
}
}