-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"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": "TZ=UTC vitest --run",
"test:components": "TZ=UTC vitest --run components/",
"test:watch": "TZ=UTC vitest",
"test:ui": "TZ=UTC vitest --ui --open",
"postinstall": "nuxt prepare",
"generate": "nuxt generate",
"preview": "DATABASE_URL=file:./db.sqlite nuxt preview",
"typecheck": "nuxt typecheck"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@huntersofbook/naive-ui-nuxt": "^0.5.1",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.2.0",
"@testing-library/vue": "^6.6.1",
"@vitejs/plugin-vue": "^3.2.0",
"@vitest/coverage-c8": "^0.26.0",
"@vitest/ui": "^0.26.1",
"dayjs": "^1.11.7",
"eslint": "^8.30.0",
"h3": "^1.0.2",
"jsdom": "^20.0.3",
"nuxt": "3.0.0",
"nuxt-svgo": "^1.1.0",
"playwright": "^1.29.0",
"prisma": "^4.8.0",
"typescript": "^4.9.4",
"unplugin-auto-import": "^0.12.1",
"unplugin-vue-components": "^0.22.12",
"uuid": "^9.0.0",
"vite-svg-loader": "^3.6.0",
"vitest": "^0.26.1",
"vue-tsc": "^1.0.16"
},
"dependencies": {
"@prisma/client": "^4.8.0",
"@sidebase/core": "^0.1.4",
"@sidebase/nuxt-prisma": "^0.1.0",
"@trpc/client": "^10.7.0",
"@trpc/server": "^10.7.0",
"trpc-nuxt": "^0.4.4",
"zod": "^3.20.2"
}
}