-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.48 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.48 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
{
"name": "perd",
"private": true,
"type": "module",
"imports": {
"#server/*": "./server/*.ts",
"#shared/*": "./shared/*.ts"
},
"scripts": {
"build": "pnpm exec nuxt build",
"db:generate": "pnpm exec drizzle-kit generate",
"db:migrate:local": "pnpm exec tsx --env-file=.env ./tools/migrate.ts",
"db:migrate": "pnpm exec tsx ./tools/migrate.ts",
"db:seed": "pnpm exec tsx ./tools/seed.ts",
"db:seed:local": "pnpm exec tsx --env-file=.env ./tools/seed.ts",
"deploy:production": "pnpm exec wrangler deploy --env=production",
"deploy:staging": "pnpm exec wrangler deploy --env=staging",
"deploy:versions:staging": "pnpm exec wrangler versions upload --env=staging",
"dev": "pnpm exec nuxt dev",
"drizzle": "pnpm exec drizzle-kit",
"lint:markdown": "pnpm exec markdownlint '**/*.md'",
"lint:oxlint": "pnpm exec oxlint",
"postinstall": "pnpm exec nuxt prepare",
"preview": "pnpm exec wrangler dev",
"preview:e2e": "pnpm run build && pnpm run preview",
"test:e2e": "pnpm exec playwright test",
"test:e2e:ci": "CI=true pnpm exec playwright test",
"test:typecheck": "pnpm exec nuxi typecheck",
"test:unit": "pnpm exec vitest",
"test:unit:ci": "pnpm exec vitest run",
"test:unit:agent": "pnpm exec vitest run --reporter agent",
"update:all": "pnpm exec taze --interactive --include-locked",
"prepare": "pnpm exec husky"
},
"dependencies": {
"@nuxt/hints": "1.0.3",
"delay": "7.0.0",
"nuxt": "4.4.2",
"vue": "3.5.32"
},
"devDependencies": {
"@iconify-json/streamline-emojis": "1.2.4",
"@iconify-json/tabler": "1.2.33",
"@neondatabase/serverless": "1.0.2",
"@nuxt/devtools": "4.0.0-alpha.4",
"@nuxt/fonts": "0.14.0",
"@nuxt/icon": "2.2.1",
"@playwright/test": "1.59.1",
"@types/node": "25.6.0",
"@types/ws": "8.18.1",
"@vueuse/core": "14.2.1",
"drizzle-kit": "1.0.0-beta.21",
"drizzle-orm": "1.0.0-beta.21",
"drizzle-seed": "1.0.0-beta.21",
"eslint-config-greenpie": "16.0.0-5",
"husky": "9.1.7",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"oxlint": "1.59.0",
"oxlint-tsgolint": "0.19.0",
"taze": "19.11.0",
"tsx": "4.21.0",
"typescript": "6.0.2",
"ufo": "1.6.3",
"valibot": "1.3.1",
"vite": "8.0.8",
"vitest": "4.1.4",
"vue-tsc": "3.2.6",
"wrangler": "4.81.1",
"ws": "8.20.0"
},
"packageManager": "pnpm@10.33.0",
"overrides": {
"@nuxt/devtools": "$@nuxt/devtools"
}
}