-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "vue_vite_game",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://springfil.github.io/vue_vite_game/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"dependencies": {
"pinia": "^2.1.6",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-vue": "^4.2.3",
"babel-eslint": "^10.1.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-babel": "^5.3.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"types-vue": "^1.1.0",
"typescript": "^5.2.2",
"vite": "^4.4.7"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
}
}