-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.31 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
65
66
67
68
69
70
71
{
"name": "alphapush",
"type": "module",
"version": "0.3.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply alphapush-prod --local",
"db:migrate:prod": "wrangler d1 migrations apply alphapush-prod --remote",
"db:migrate:dev": "wrangler d1 migrations apply --env dev alphapush-dev --remote",
"deploy:dev": "astro build && wrangler pages deploy dist --branch dev",
"deploy:prod": "astro build && wrangler pages deploy dist --branch main",
"postinstall": "node scripts/postinstall.mjs",
"prebuild": "node scripts/prebuild.mjs",
"generate:worker-types": "wrangler types"
},
"license": "MIT",
"homepage": "https://github.com/alkinum/alphapush",
"repository": "https://github.com/alkinum/alphapush.git",
"author": "alkinum.io",
"bugs": "https://github.com/alkinum/alphapush/issues",
"maintainers": [
"BackRunner"
],
"dependencies": {
"@alkinum/alphapush-encryption": "file:./packages/encryption",
"@astrojs/check": "^0.9.3",
"@astrojs/cloudflare": "^11.0.4",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vue": "^4.5.0",
"@auth/core": "^0.32.0",
"@block65/webcrypto-web-push": "^1.0.1",
"@fingerprintjs/fingerprintjs": "^4.4.3",
"@iconify/vue": "^4.1.2",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-icons/vue": "^1.0.0",
"@vueuse/core": "^11.0.3",
"@vueuse/gesture": "^2.0.0",
"astro": "^4.15.4",
"auth-astro": "^4.1.2",
"base64-arraybuffer": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.33.0",
"highlight.js": "^11.10.0",
"lru-cache": "^11.0.1",
"marked": "^14.1.1",
"nanoid": "^5.0.7",
"radix-vue": "^1.9.5",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4",
"vaul-vue": "^0.2.0",
"vue": "^3.5.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@types/marked": "^6.0.0",
"@types/web-push": "^3.6.3",
"better-sqlite3": "^11.2.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.24.2",
"wrangler": "^3.75.0"
}
}