-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
{
"private": true,
"scripts": {
"dev": "prisma generate && nuxt dev",
"build": "prisma generate && nuxt build",
"start": "NODE_ENV=production node .output/server/index.mjs",
"lint": "eslint .",
"test": "vitest --run",
"test:components": "vitest --run components/",
"test:watch": "vitest",
"test:ui": "vitest --ui --open",
"postinstall": "nuxt prepare",
"generate": "nuxt generate",
"preview": "DATABASE_URL=file:./db.sqlite nuxt preview",
"typecheck": "nuxt typecheck",
"studio": "prisma studio"
},
"dependencies": {
"@nuxt/image": "^1.3.0",
"@prisma/client": "^5.9.1",
"@sidebase/core": "^0.1.4",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@vitest/coverage-v8": "^1.2.2",
"consola": "^3.2.3",
"trpc-nuxt": "^0.10.21",
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@faker-js/faker": "^8.4.0",
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/google-fonts": "^3.1.3",
"@nuxtjs/seo": "2.0.0-rc.10",
"@nuxtjs/tailwindcss": "^6.11.4",
"@testing-library/vue": "^8.0.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitest/ui": "^1.2.2",
"dayjs": "^1.11.10",
"eslint": "^8.56.0",
"h3": "^1.10.1",
"nuxt": "3.11.2",
"nuxt-icon": "^0.6.10",
"nuxt-scheduler": "^0.1.9",
"nuxt-svgo": "^4.0.0",
"playwright": "^1.41.2",
"prisma": "^5.9.1",
"typescript": "^5.4.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"uuid": "^9.0.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
}
}