-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 2.17 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
{
"name": "new-train-tracker",
"version": "2.4.0",
"description": "New Train Tracker by TransitMattters",
"main": "index.tsx",
"scripts": {
"build": "tsc && vite build",
"lint": "npm run lint-frontend && npm run lint-backend",
"dev": "vite",
"lint-frontend": "eslint src",
"lint-backend": "cd server && poetry run flake8",
"postinstall": "poetry install",
"start-prod": "npm run build && NODE_ENV=production npm run start-python",
"start-python": "cd server && poetry run chalice local --port=5000",
"start": "concurrently npm:start-python npm:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transitmatters/new-train-tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/transitmatters/new-train-tracker/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
},
"homepage": "https://github.com/transitmatters/new-train-tracker#readme",
"dependencies": {
"@ariakit/react": "^0.4.11",
"@tanstack/react-query": "^5.56.2",
"bezier-js": "^2.5.1",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-favicon": "2.0.7",
"react-loading-indicators": "^0.2.3",
"react-router-dom": "^6.26.2",
"react-spring": "^8.0.27",
"seamless-scroll-polyfill": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.2.12"
}
}