-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
41 lines (41 loc) · 893 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
32
33
34
35
36
37
38
39
40
41
{
"private": true,
"scripts": {
"prepare": "husky install",
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"lint-staged": {
"*.{ts,vue}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@nuxtjs/device": "^3.1.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.1.3",
"@vueuse/core": "^10.1.2",
"@vueuse/nuxt": "^10.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"msw": "^1.2.1",
"nuxt": "^3.4.3"
},
"dependencies": {
"@pinia/nuxt": "^0.4.10",
"axios": "^1.4.0"
},
"msw": {
"workerDirectory": "public"
}
}