-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.89 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.89 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
{
"name": "headway",
"type": "module",
"author": "Andy andy@nonissue.org",
"main": "./dist/server.js",
"scripts": {
"dev:server": "tsx watch src/server.ts",
"dev:client": "vite --host",
"dev": "concurrently \"npm:dev:server\" \"npm:dev:client\"",
"build:client": "vite build",
"build:server": "tsc",
"build": "npm run build:client && npm run build:server",
"preview": "npm run build; node dist/server.js",
"serve": "node dist/server.js",
"db:update": "npm run db:import && npm run db:slim",
"db:import": "npx gtfs-import --configPath import-config.json",
"db:slim": "sqlite3 db/gtfs.db < scripts/build_lrt_only_db.sql",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"deploy": "npm run build && fly deploy --dns-checks=false"
},
"dependencies": {
"@hono/node-server": "^1.17.1",
"@sentry/node": "^10.1.0",
"better-sqlite3": "^12.4.6",
"gtfs": "^4.17.5",
"hono": "^4.8.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.53.1",
"@eslint/js": "^9.36.0",
"@flydotio/dockerfile": "^0.7.10",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@sentry/vite-plugin": "^4.4.0",
"@tailwindcss/vite": "^4.1.14",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vite-pwa/assets-generator": "^1.0.1",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"concurrently": "^9.2.0",
"csv-parse": "^6.1.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"globals": "^16.4.0",
"jsdom": "^28.1.0",
"lucide-react": "^0.545.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.8",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}