-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "velocity-pwa",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.1.5",
"@reach/router": "^1.2.1",
"@rehooks/component-size": "^1.0.2",
"body-scroll-lock": "^2.6.1",
"clsx": "^1.1.1",
"country-info-list": "^1.1.3",
"ibantools": "^2.0.0",
"leaflet": "^1.3.4",
"modern-normalize": "^0.5.0",
"moment": "^2.23.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-leaflet": "^2.1.2",
"react-toastify": "^5.0.0",
"react-virtualized": "^9.21.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint -p .",
"fix": "tslint -p . --fix && prettier --write 'src/**/*.{json,scss,ts,tsx}'"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"yarn fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "https://velocity.ac",
"devDependencies": {
"@types/body-scroll-lock": "^2.6.0",
"@types/jest": "^24.0.11",
"@types/node": "^10.12.7",
"@types/reach__router": "^1.2.2",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-leaflet": "^2",
"@types/react-virtualized": "^9.18.8",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"node-sass": "^4.10.0",
"prettier": "^2.0.5",
"react-scripts": "^3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.1.6",
"http-proxy-middleware": "^1.0.6"
}
}