-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "slopeninja-frontend",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"react-scripts": "0.9.5"
},
"dependencies": {
"better-react-spinkit": "^2.0.0-6",
"bootstrap": "next",
"classnames": "^2.2.5",
"email-validator": "^1.0.7",
"google-map-react": "^0.23.0",
"history": "^4.6.1",
"isomorphic-fetch": "^2.2.1",
"lodash.samplesize": "^4.2.0",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-ga": "^2.2.0",
"react-progress-button": "^5.0.4",
"react-redux": "^5.0.4",
"react-redux-form": "^1.11.1",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "5.0.0-alpha.6",
"react-window-resize-listener": "^1.1.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-persist": "^4.8.2",
"redux-thunk": "^2.2.0",
"serve": "^10.1.1",
"uuid": "^3.0.1",
"wicg-focus-ring": "^1.0.1"
},
"scripts": {
"dev-with-local-backend": "REACT_APP_API_URL='http://localhost:8080' react-scripts start",
"dev-with-remote-backend": "REACT_APP_API_URL='https://api.slope.ninja' react-scripts start",
"build": "REACT_APP_API_URL='https://api.slope.ninja' react-scripts build",
"start": "serve -s build/ -l 3001",
"lint": "node_modules/eslint/bin/eslint.js src/",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}