-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"scripts": {
"build": "prisma generate && nuxt build",
"dev": "prisma generate && nuxt dev -p 3000",
"format": "prettier --write .",
"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",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 'cypress open'",
"test:e2e:run": "start-server-and-test preview http://localhost:3000 'cypress run'",
"postinstall": "nuxt prepare",
"generate": "nuxt generate",
"preview": "DATABASE_URL=file:../../../../../prisma/db.sqlite nuxt preview",
"typecheck": "nuxt typecheck && tsc -b cypress",
"storybook": "storybook-server -p 6006"
},
"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",
"@sidebase/nuxt-auth": "^0.4.1",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.4.2",
"@storybook/vue3": "^6.5.16",
"@testing-library/cypress": "^9.0.0",
"@testing-library/user-event": "^14.4.3",
"@testing-library/vue": "^6.6.1",
"@types/bcrypt": "^5.0.0",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/coverage-c8": "^0.26.0",
"@vitest/ui": "^0.26.1",
"bcrypt": "^5.1.0",
"cypress": "^12.6.0",
"dayjs": "^1.11.7",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"h3": "^1.0.2",
"jsdom": "^21.0.0",
"msw": "^0.49.2",
"nuxt": "^3.2.2",
"nuxt-svgo": "^1.1.0",
"playwright": "^1.29.2",
"prisma": "^4.8.1",
"start-server-and-test": "^1.15.4",
"storybook-vue3-router": "^2.3.1",
"ts-node": "^10.9.1",
"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": {
"@headlessui/vue": "^1.7.7",
"@heroicons/vue": "^2.0.13",
"@pinia/nuxt": "^0.4.6",
"@prisma/client": "^4.8.1",
"@sidebase/core": "^0.1.4",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/vue-query": "^4.22.0",
"@vee-validate/zod": "^4.7.3",
"axios": "^1.2.2",
"marked": "^4.2.5",
"next-auth": "^4.18.8",
"pinia": "^2.0.28",
"vue-dompurify-html": "^3.1.2"
},
"msw": {
"workerDirectory": "public"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}