-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "app-starter",
"version": "0.0.0",
"type": "module",
"description": "",
"scripts": {
"start": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix"
},
"dependencies": {
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@vitejs/plugin-vue": "^4.3.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "^4.3.8",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"pug": "^3.0.2",
"stylus": "^0.59.0",
"vite": "^4.4.9",
"vite-plugin-pwa": "^0.16.4",
"vue-eslint-parser": "^9.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}