forked from roataway/roataway-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.68 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
{
"name": "roataway-web",
"version": "0.1.3",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@roataway/infrastructure-data": "^1.0.5",
"@sentry/browser": "^5.12.1",
"@types/jest": "^24.9.1",
"@types/leaflet": "^1.5.8",
"@types/lodash.uniqby": "^4.7.6",
"@types/node": "^12.12.26",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-leaflet": "^2.5.0",
"@types/sockjs-client": "^1.1.1",
"@winify/react-scripts": "^3.3.1",
"csv-parse": "^4.8.5",
"csv.macro": "^1.0.1",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"i18next": "^17.3.1",
"i18next-browser-languagedetector": "^4.0.1",
"leaflet": "^1.6.0",
"lint-staged": "^9.5.0",
"lodash.uniqby": "^4.7.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.12.0",
"react-i18next": "^10.13.2",
"react-leaflet": "^2.6.1",
"sockjs-client": "^1.4.0",
"typescript": "^3.7.5",
"webstomp-client": "^1.2.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {}
}