-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.34 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "cooky",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"build": "nuxt build && npm run postbuild",
"postbuild": "cp -r node_modules/@img .output/server/node_modules/",
"dev": "docker compose up -d postgres && nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "patch-package && nuxt prepare && prisma generate",
"lint": "eslint . --ext .html,.js,.ts,.vue && stylelint '**/*.{css,vue}'",
"lint:fix": "eslint . --ext .html,.js,.ts,.vue --fix && stylelint '**/*.{css,vue}' --fix",
"lint:staged": "lint-staged",
"commitlint": "commitlint --edit",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:reset": "prisma migrate reset",
"prisma:migrate:deploy": "prisma migrate deploy",
"storybook:dev": "storybook dev --port 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes"
},
"lint-staged": {
"*.{html,js,ts,vue}": "eslint --fix",
"*.{css,vue}": "stylelint --fix"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"devDependencies": {
"@auth/core": "^0.17.0",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@hebilicious/authjs-nuxt": "^0.3.5",
"@iconify/json": "^2.2.181",
"@julr/unocss-preset-forms": "^0.1.0",
"@kyvg/vue3-notification": "^3.2.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.2.0",
"@prisma/client": "^5.12.1",
"@storybook-vue/nuxt": "^0.2.6",
"@storybook/addon-actions": "^8.0.5",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-themes": "^8.0.5",
"@storybook/vue3": "^8.0.5",
"@storybook/vue3-vite": "^8.0.5",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.11.27",
"@unocss/eslint-config": "^0.58.5",
"@unocss/nuxt": "^0.58.5",
"@unocss/transformer-directives": "^0.58.5",
"@vee-validate/nuxt": "^4.12.6",
"@vee-validate/valibot": "^4.12.6",
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"@yeger/vue-masonry-wall": "^5.0.8",
"ajv": "^8.12.0",
"bcrypt": "^5.1.1",
"chromatic": "^10.9.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"h3-valibot": "^0.0.7",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"nuxt": "^3.11.0",
"nuxt-headlessui": "^1.2.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^5.12.1",
"prisma-json-types-generator": "^3.0.4",
"sharp": "^0.33.2",
"sortablejs": "^1.15.2",
"storybook": "^8.0.5",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"super-image-cropper": "^1.0.18",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"unocss-preset-theme": "^0.12.0",
"vite": "^5.2.6",
"vue": "^3.4.15",
"vue-advanced-cropper": "^2.8.8",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.27",
"vue3-marquee": "^4.2.0"
},
"overrides": {
"valibot": "^0.28.1"
}
}