-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.99 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
{
"name": "nuxt-app-starter",
"private": true,
"version": "1.0.1",
"description": "Nuxt3 with MongoDB SSR Full-Stack App Template",
"keywords": [
"SSR",
"SPA",
"nuxt",
"vue",
"auth",
"mongo",
"starter",
"boilerplate",
"nuxt-auth",
"full-stack"
],
"scripts": {
"prepare": "husky install",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"analyze": "npx nuxi analyze",
"clean": "npx nuxi clean",
"test": "vitest --run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"@element-plus/nuxt": "^1.0.4",
"@nuxt/image": "^0.7.1",
"@pinia/nuxt": "^0.4.9",
"h3-typebox": "^0.6.0",
"jsonwebtoken": "^9.0.0",
"pinia": "^2.0.35"
},
"devDependencies": {
"@nuxt/devtools": "^0.4.0",
"@nuxt/test-utils": "^3.4.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^4.0.2",
"@sidebase/nuxt-auth": "0.6.0-alpha.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vite-pwa/nuxt": "^0.0.7",
"@vitest/coverage-c8": "^0.30.1",
"@vue/eslint-config-standard": "^8.0.1",
"element-plus": "^2.3.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.11.0",
"husky": ">=6",
"lint-staged": ">=10",
"mongoose": "^7.0.4",
"mongoose-bcrypt": "^1.10.1",
"nuxt": "^3.4.2",
"prettier": "^2.8.8",
"sass": "^1.57.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1",
"vue-tsc": "^1.4.4"
},
"engines": {
"node": "^18.16.0"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.{js,vue,css,md,html,json}": "prettier --cache --write",
"*.js": "eslint --cache --fix"
}
}