-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.72 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
{
"private": true,
"type": "module",
"scripts": {
"build:cloudflare:local": "NITRO_PRESET=cloudflare_pages nuxt build --dotenv .env.local",
"build:cloudflare:production": "NITRO_PRESET=cloudflare_pages nuxt build --dotenv .env.cloudflare",
"build:local": "nuxt build --dotenv .env.local",
"build:vercel": "NITRO_PRESET=vercel nuxt build",
"build:firebase": "NITRO_PRESET=firebase nuxt build --dotenv .env.firebase",
"dev": "nuxt dev --dotenv .env.local",
"preview:wrangler": "run-s build:cloudflare:local run:wrangler:dev",
"run:wrangler:dev": "wrangler pages dev dist/ --experimental-local --live-reload --env local --compatibility-flag nodejs_compat",
"preview": "nuxt preview",
"deploy:firebase": "firebase deploy",
"deploy:wrangler": "wrangler publish",
"deploy:wrangler:pages": "wrangler pages publish --compatibility-flag nodejs_compat",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20230321.0",
"@miniflare/tre": "3.0.0-next.12",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"firebase": "^9.18.0",
"firebase-admin": "^11.5.0",
"firebase-functions": "^4.2.1",
"firebase-tools": "^11.25.1",
"npm-run-all": "^4.1.5",
"nuxt": "^3.3.1",
"nuxt-vuefire": "^0.1.6",
"rollup": "^3.20.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2",
"unenv": "^1.2.2",
"vue": "^3.2.47",
"vuefire": "^3.1.0",
"wrangler": "^2.13.0"
},
"devDependencies": {
"rollup-plugin-polyfill-node": "^0.12.0"
}
}