-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "trainboard",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"@mui/styles": "^5.11.16",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"google-map-react": "^2.2.0",
"gtfs-realtime-bindings": "^1.1.1",
"prettier": "^2.8.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.10.0",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@types/google-map-react": "^2.1.7",
"@types/node": "^18.15.11",
"@types/react": "^17.0.56",
"@types/react-dom": "^17.0.19",
"@vitejs/plugin-react": "^4.2.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"sass": "^1.61.0",
"typescript": "^4.9.5",
"vite": "^5.1.6",
"vite-plugin-svgr": "^4.2.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "npm run lint:eslint && npm run typecheck",
"lint:eslint": "eslint --ext .ts,.tsx src",
"lint:fix": "npm run lint:eslint -- --fix",
"typecheck": "tsc --noEmit",
"tunnel": "ngrok http 3000",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}