-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
{
"name": "predictions-app",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "npx vite dev",
"build": "npx vite build",
"preview": "npx vite preview",
"sync": "npx svelte-kit sync",
"postinstall": "npx svelte-kit sync",
"test": "npx vitest",
"test:ui": "npx vitest --ui",
"test:run": "npx vitest run",
"coverage": "npx vitest run --coverage",
"check": "npx svelte-check --tsconfig ./tsconfig.json",
"check:watch": "npx svelte-check --tsconfig ./tsconfig.json --watch",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"db:push": "npx drizzle-kit push",
"db:studio": "npx drizzle-kit studio",
"migrate": "npx tsx scripts/migrate-data.ts",
"validate": "npx tsx scripts/validate-migration.ts"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.2.9",
"@sveltejs/kit": "^2.15.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/svelte": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.0.0",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.1",
"happy-dom": "^15.0.0",
"postcss": "^8.4.49",
"svelte": "^5.15.1",
"svelte-check": "^4.1.3",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.8.1",
"cron-parser": "^5.4.0",
"drizzle-orm": "^0.38.3",
"node-cron": "^4.2.1",
"resend": "^6.6.0",
"twilio": "^5.11.1"
}
}