forked from damien-hl/nuxt3-auth-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 842 Bytes
/
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
{
"name": "nuxt3-auth-example",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{json,css,scss,md}": "prettier --write"
},
"dependencies": {
"bcryptjs": "^2.4.3"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@types/bcryptjs": "^2.4.3",
"@unocss/nuxt": "^0.56.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nuxt": "^3.7.3"
}
}