-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 KB
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
{
"name": "index",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "lint-staged",
"lint:es:fix": "eslint . --fix",
"lint:es:check": "eslint . --max-warnings 0",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint",
"*.vue": "eslint"
},
"dependencies": {
"@nuxt/image": "2.0.0",
"@nuxt/scripts": "0.13.0",
"@nuxt/ui": "4.1.0",
"@unhead/vue": "^2.0.3",
"jwt-decode": "^4.0.0",
"ky": "^1.7.2",
"nuxt": "^4.2.1",
"typescript": "^5.6.3",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify-json/heroicons": "^1.2.3",
"@nuxt/eslint": "1.10.0",
"@nuxt/test-utils": "3.20.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.0.0",
"eslint-config-nymph": "^0.15.3",
"eslint-plugin-jsdoc": "^48.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0"
}
}