This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.74 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"proxy": "http://127.0.0.1:8000/",
"engineStrict": true,
"engines": {
"node": ">=9.0.0 <12.0.0"
},
"dependencies": {
"@marvelapp/react-ab-test": "^2.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-polyfill": "^6.26.0",
"browserstack-local": "^1.4.5",
"create-react-app": "^3.4.1",
"leaflet.markercluster": "1.4.1",
"mapbox.js": "3.3.1",
"mixpanel-browser": "^2.38.0",
"nightwatch": "^1.3.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "REACT_APP_BUILD_DATE=$(date +%d/%m/%Y) react-scripts start",
"start": "./node_modules/.bin/npm-run-all -p watch-css start-js",
"build-js": "REACT_APP_BUILD_DATE=$(date +%d/%m/%Y) react-scripts build",
"build": "./node_modules/.bin/npm-run-all build-css build-js",
"lint": "eslint src",
"test-unit": "react-scripts test --env=jsdom --watchAll",
"test-unit-ci": "react-scripts test --env=jsdom --no-watch",
"eject": "react-scripts eject"
},
"devDependencies": {
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.5",
"react-scripts": "^3.4.1"
},
"eslintIgnore": [
"build/*",
"registerServiceWorker.js"
],
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
]
}