-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.59 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
{
"name": "peoplesopen-dash",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.8.1",
"eslint-config-react-app": "^0.3.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"node-sass": "^3.10.1",
"react-scripts": "0.9.4"
},
"dependencies": {
"bootstrap": "^4.0.0-alpha.5",
"check-types": "^7.0.1",
"es6-promisify": "^5.0.0",
"moment": "^2.17.1",
"node-json-rpc": "0.0.1",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"reactstrap": "4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"dev-server": "react-scripts start && kill $WATCH_SASS_PID",
"background-sass-watcher": "node-sass --watch --recursive src/index.scss -o src/css & WATCH_SASS_PID=$!",
"compile-sass": "node-sass --recursive src/index.scss -o src/css",
"start": "npm run compile-sass && npm run background-sass-watcher && npm run dev-server",
"build-prod": "echo \"export default 'production'\" > src/env.js && npm run compile-sass && react-scripts build",
"build-dev": "echo \"export default 'development'\" > src/env.js && echo 'WARN: Building for development; using stubbed API calls.' && npm run compile-sass && react-scripts build",
"build": "npm run build-prod",
"test": "react-scripts test"
}
}