-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "sonicjs",
"type": "module",
"version": "0.1.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"generate": "drizzle-kit generate",
"up": "wrangler d1 migrations apply sonicjs --local",
"up:prod": "wrangler d1 migrations apply sonicjs --remote"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/cloudflare": "^11.1.0",
"@astrojs/react": "^3.6.2",
"@astrojs/tailwind": "^5.1.1",
"@headlessui/react": "^2.1.10",
"@heroicons/react": "^2.1.5",
"@node-rs/argon2": "^1.8.3",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@tailwindcss/forms": "^0.5.9",
"@tanstack/react-table": "^8.20.5",
"@types/nodemailer": "^6.4.16",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"astro": "^4.15.9",
"drizzle-orm": "^0.33.0",
"nodemailer": "^6.9.16",
"qs": "^6.13.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/node": "^22.7.3",
"drizzle-kit": "^0.24.2",
"vitest": "^2.1.1",
"wrangler": "^3.78.11"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
}
}