-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "whale",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"@docker/node-sdk": "^0.0.17",
"@nuxt/eslint": "1.10.0",
"@nuxt/ui": "4.1.0",
"@prisma/client": "^6.19.0",
"eslint": "^9.39.1",
"nuxt": "^4.2.1",
"typescript": "^5.9.3",
"vue": "^3.5.24",
"vue-router": "^4.6.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.73",
"@iconify-json/simple-icons": "^1.2.59",
"@pinia/nuxt": "^0.11.3",
"@types/node": "^24.10.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"prisma": "^6.19.0"
}
}