-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"prepare": "husky install",
"test": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"happy-dom": "^8.2.6",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"nuxt": "3.0.0",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.33.1",
"@pinia/nuxt": "^0.4.6",
"axios": "^1.2.2",
"pinia": "^2.0.28",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.2.7",
"vitest": "^0.27.0"
},
"lint-staged": {
"**/*.{js,ts,vue,html,css}": [
"npm lintfix"
]
}
}