-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && simple-git-hooks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.28",
"@next-auth/prisma-adapter": "^1.0.7",
"@nuxt/devtools": "^1.0.0",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/i18n": "8.0.0-rc.5",
"@nuxtseo/module": "2.0.0-beta.39",
"@pinia-plugin-persistedstate/nuxt": "^1.1.2",
"@pinia/nuxt": "^0.4.4",
"@prisma/client": "^5.4.2",
"@sidebase/nuxt-auth": "0.6.0-rc.0",
"@types/node": "^20.8.7",
"@unocss/eslint-config": "^0.57.0",
"@unocss/nuxt": "^0.57.0",
"@unocss/preset-uno": "^0.57.0",
"@unocss/reset": "^0.57.0",
"@vant/nuxt": "^1.0.3",
"@vant/touch-emulator": "^1.4.0",
"@vueuse/core": "^10.5.0",
"@vueuse/nuxt": "^10.5.0",
"eslint": "^8.52.0",
"lint-staged": "^15.0.2",
"nuxt": "^3.8.0",
"nuxt-icon": "^0.5.0",
"nuxt-typed-router": "^3.3.2",
"pinia": "^2.1.7",
"prisma": "^5.4.2",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}