-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"private": true,
"name": "chatino-resources",
"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": "^8.0.2",
"@huntersofbook/naive-ui-nuxt": "^1.0.0",
"@iconify-json/carbon": "^1.1.17",
"@iconify/json": "^2.2.74",
"@nuxt/content": "^2.6.0",
"@nuxt/image-edge": "1.0.0-28099902.2b6ed1c",
"@nuxt/test-utils": "^3.5.2",
"@nuxthq/studio": "^0.13.4",
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.7.0",
"@prisma/client": "^4.15.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/vue": "^7.0.0",
"@unlighthouse/nuxt": "^0.8.7",
"@unocss/nuxt": "^0.53.0",
"@unocss/preset-icons": "^0.53.0",
"@vicons/carbon": "^0.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.31.4",
"@vitest/ui": "^0.31.4",
"@vueuse/nuxt": "^10.1.2",
"daisyui": "^3.0.3",
"dayjs": "^1.11.8",
"eslint": "^8.42.0",
"h3": "^1.6.6",
"jsdom": "^22.1.0",
"nuxt": "3.5.2",
"nuxt-schema-org": "^2.2.0",
"nuxt-seo-kit": "^1.3.8",
"nuxt-svgo": "^3.1.0",
"playwright": "^1.34.3",
"prisma": "^4.15.0",
"sass": "^1.62.1",
"sitemap": "^7.1.1",
"typescript": "^4.9.4",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"uuid": "^9.0.0",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.31.4",
"vue-tsc": "^1.6.5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@nuxt/devtools": "^0.5.5",
"@sidebase/core": "^0.1.4",
"nuxt-security": "^0.13.0"
}
}