-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate": "npx tsx ./db/migrate.ts",
"db:seed": "npx tsx ./db/seed.ts",
"db:push": "drizzle-kit push:sqlite",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@libsql/client": "^0.5.6",
"@vueuse/core": "^10.9.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.29.5",
"nuxt": "^3.10.3",
"pinia": "^2.1.7",
"uuid": "^9.0.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@pinia/nuxt": "^0.5.1",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.18",
"daisyui": "^4.7.3",
"drizzle-kit": "^0.20.14",
"nuxt-icon": "^0.6.9",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
}
}