-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.28 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.28 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
77
78
{
"name": "enpitsulin-dev",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "pnpm run build && wrangler dev",
"postinstall": "nuxt prepare && simple-git-hooks",
"deploy": "pnpm run build && wrangler deploy",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"cf-typegen": "wrangler types",
"db:generate": "nuxt db generate",
"db:migrate": "nuxt db migrate",
"db:migrate:remote": "wrangler d1 migrations apply enpitsulin-dev --remote",
"db:studio": "DATABASE_URL=\"$(ls -t ./.wrangler/state/v3/d1/**/*.sqlite | head -n 1)\" drizzle-kit studio"
},
"dependencies": {
"@ark-ui/vue": "^5.35.0",
"@nuxt/content": "3.10.0",
"@nuxt/fonts": "0.14.0",
"@nuxt/image": "2.0.0",
"@nuxthub/core": "0.10.4",
"@takumi-rs/core": "^0.73.1",
"@takumi-rs/wasm": "^0.73.1",
"@tanstack/vue-form": "^1.28.6",
"@unocss/reset": "^66.6.7",
"@vueuse/core": "^14.2.1",
"better-sqlite3": "^12.8.0",
"drizzle-orm": "^0.45.2",
"feed": "^5.2.0",
"lesetid": "^2.0.8",
"motion-v": "^2.2.0",
"nuxt": "^4.4.2",
"nuxt-studio": "^1.5.1",
"rehype-unwrap-images": "^1.0.0",
"ufo": "^1.6.3",
"unstorage": "^1.17.5",
"vue": "^3.5.32",
"vue-router": "^5.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@iconify-json/carbon": "^1.2.20",
"@iconify-json/logos": "^1.2.11",
"@iconify-json/mingcute": "^1.2.7",
"@nuxt/devtools": "^4.0.0-alpha.3",
"@nuxt/eslint": "1.12.1",
"@nuxtjs/color-mode": "^4.0.0",
"@nuxtjs/mdc": "^0.21.1",
"@types/node": "^25.5.2",
"@unocss/nuxt": "^66.6.7",
"@unocss/preset-mini": "^66.6.7",
"@unocss/preset-uno": "^66.6.7",
"@vueuse/nuxt": "^14.2.1",
"crossws": "0.3.5",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.0",
"eslint-plugin-format": "^2.0.1",
"lint-staged": "^16.4.0",
"nuxt-og-image": "^6.3.2",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.2",
"unocss": "^66.6.7",
"wrangler": "^4.80.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}