-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"type": "module",
"version": "0.0.3",
"private": "true",
"description": "Starter template for Nuxt",
"author": "Elone Hoo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev --dotenv .env.local",
"db:generate": "drizzle-kit generate",
"start": "node .output/server/index.mjs",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "nuxi prepare",
"generate": "nuxi generate",
"release": "bumpp package.json --commit --push --tag"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"drizzle-orm": "^0.33.0",
"nuxt": "^3.13.2",
"pinia": "^2.2.2",
"postgres": "^3.4.4",
"unocss": "^0.62.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@iconify-json/carbon": "^1.2.1",
"@iconify-json/twemoji": "^1.2.0",
"@nuxt/devtools": "^1.4.2",
"@nuxt/fonts": "^0.8.0",
"@nuxtjs/color-mode": "^3.5.1",
"@pinia/nuxt": "^0.5.4",
"@unocss/nuxt": "^0.62.4",
"@vueuse/nuxt": "^11.1.0",
"bumpp": "^9.5.2",
"drizzle-kit": "^0.24.2",
"eslint": "^9.10.0",
"happy-dom": "^15.7.4",
"nuxt-vitest": "^0.11.5",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}