-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.38 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mrtdown-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"i18n:extract": "formatjs extract 'app/**/*.{ts,tsx}' --ignore '**/*.d.ts' --out-file lang/en-SG.json --format simple",
"build": "vite build",
"test": "vitest",
"test:run": "vitest --run",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format:check": "biome format .",
"seo:check": "tsx app/scripts/checkSeo.ts",
"perf:routes": "tsx app/scripts/checkRouteTimings.ts",
"verify": "npm run typecheck && npm run lint && npm run format:check && npm run db:generate:check && npm run test:run",
"verify:strict": "npm run typecheck && npm run lint && npm run format:check && npm run db:generate:check && npm run test:run",
"dev:pull": "curl -i -X POST http://localhost:3000/internal/api/tasks/pull",
"dev:public-holidays": "curl -i -X POST http://localhost:3000/internal/api/tasks/public-holidays",
"dev:crowd-report-dispatch": "curl -i -X POST http://localhost:3000/internal/api/tasks/crowd-report-dispatch",
"db:reset": "tsx app/scripts/resetDatabase.ts",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:generate:check": "tsx app/scripts/checkDrizzleMigrations.ts",
"db:migrate": "drizzle-kit migrate",
"db:migrate:debug": "tsx app/scripts/migrateDatabase.ts",
"db:seed:fixtures": "tsx app/scripts/seedFixtures.ts",
"db:seed:crowd-report-fixtures": "tsx app/scripts/seedCrowdReportFixtures.ts",
"db:preview:prepare": "npm run db:reset && npm run db:migrate:debug",
"db:studio": "drizzle-kit studio",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@fontsource-variable/radio-canada-big": "^5.2.7",
"@heroicons/react": "^2.2.0",
"@mrtdown/core": "^2.0.0-alpha.26",
"@mrtdown/fs": "^2.0.0-alpha.26",
"@mrtdown/ingest-contracts": "^2.0.0-alpha.29",
"@posthog/react": "^1.8.3",
"@sentry/cloudflare": "^10.47.0",
"@sentry/tanstackstart-react": "^10.47.0",
"@tanstack/react-query": "^5.66.11",
"@tanstack/react-router": "1.170.15",
"@tanstack/react-start": "1.168.25",
"classnames": "^2.5.1",
"drizzle-orm": "^1.0.0-beta.22",
"fflate": "^0.8.2",
"html-entities": "^2.6.0",
"isbot": "^5",
"json-nd": "^1.0.0",
"luxon": "^3.5.0",
"mdast-util-gfm": "^3.1.0",
"mdast-util-to-markdown": "^2.1.2",
"pg": "^8.20.0",
"posthog-js": "^1.391.2",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-intl": "^7.1.10",
"recharts": "^2.15.1",
"rrule": "^2.8.1",
"tailwindcss": "^4.0.9",
"use-debounce": "^10.0.4",
"xast-util-to-xml": "^4.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@cloudflare/vite-plugin": "^1.31.1",
"@formatjs/cli": "^6.6.3",
"@tailwindcss/vite": "^4.2.2",
"@types/luxon": "^3.4.2",
"@types/node": "^22.14.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/xast": "^2.0.4",
"@vitejs/plugin-react-swc": "^4.3.0",
"drizzle-kit": "^1.0.0-beta.22",
"globals": "^15.15.0",
"tsx": "^4.20.4",
"typescript": "~5.7.2",
"vite": "^8.0.16",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.9",
"wrangler": "^4.81.0"
}
}