-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "departure-schedules",
"version": "0.1.0",
"private": true,
"dependencies": {
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"numeral": "^2.0.6",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-intl": "^2.7.2",
"react-redux": "^5.1.0",
"react-scripts": "2.0.5",
"redux": "^4.0.1",
"redux-form": "^7.4.2",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js",
"start-js": "NODE_PATH=src/ react-scripts start",
"build": "npm-run-all build-css build-js",
"build-js": "NODE_PATH=src/ react-scripts build",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src/styles --include-path ./node_modules src/ -o src/ --watch --recursive",
"build-css": "node-sass-chokidar --include-path ./src/resources/styles --include-path ./node_modules src/ -o src/",
"translate": "NODE_ENV=production babel ./src >/dev/null",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/plugin-syntax-json-strings": "^7.0.0",
"babel-plugin-react-intl": "^3.0.1",
"babel-preset-react-app": "^5.0.4"
}
}