-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.65 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.65 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "altair",
"version": "1.0.0",
"private": true,
"dependencies": {
"algoliasearch": "^3.24.5",
"altair-redux": "^1.0.1",
"decode-google-map-polyline": "^1.0.1",
"firebase": "4.6.0",
"geofire": "^4.1.2",
"keycode": "^2.1.9",
"localforage": "^1.5.3",
"lodash": "^4.17.13",
"material-ui": "next",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.19.1",
"query-string": "^5.0.1",
"react": "^16.0.0",
"react-app-rewired": "^1.3.3",
"react-dom": "^16.0.0",
"react-google-maps": "^9.2.0",
"react-lottie": "^0.2.2",
"react-redux": "^5.0.6",
"react-redux-firebase": "next",
"react-retina-image": "^2.0.4",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.14",
"react-worker-dom": "^2.0.0-alpha.6",
"redux": "^3.7.2",
"redux-action-buffer": "^1.1.0",
"redux-firestore": "latest",
"redux-logger": "^3.0.6",
"redux-persist": "4.10.1",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.2",
"superagent": "^3.8.0"
},
"lint-staged": {
"*.js": ["eslint --no-ignore --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"scripts": {
"precommit": "lint-staged",
"prepush": "yarn test",
"lint":
"eslint --ignore-path .eslintignore --ignore-pattern \"!**/.*\" . && stylelint \"./src/**/*.js\"",
"fix":
"eslint --ignore-path .eslintignore --ignore-pattern \"!**/.*\" --fix .",
"build": "node ./setup && react-scripts build",
"test":
"node ./setup && cross-env CI=true react-scripts test --env=jsdom --no-watch",
"deploy":
"node ./setup && react-scripts build && npm run delete-maps && firebase deploy",
"start": "node ./setup && react-scripts start"
},
"devDependencies": {
"add": "^2.0.6",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-styled-components": "^1.3.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-polyfill": "^6.26.0",
"cross-env": "^5.1.1",
"dotenv": "^4.0.0",
"dotenv-webpack": "^1.5.4",
"eslint": "^6.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-prettier": "^2.3.1",
"flow-bin": "^0.57.3",
"grpc": "^1.7.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"pre-render": "^0.1.0-preview.2",
"prettier": "^1.7.4",
"stylelint": "^8.0.0",
"stylelint-config-primer": "^2.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components-processor": "^0.1.1",
"stylelint-order": "^0.6.0",
"stylelint-processor-styled-components": "^0.4.0",
"yarn": "^1.2.1"
}
}