-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "guess-them-all",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Guess 'em all",
"author": "Jasper Zonneveld <[email protected]>",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue src",
"deploy": "gh-pages -d dist -u \"Jasper Zonneveld <[email protected]>\""
},
"dependencies": {
"animate.css": "^4.1.1",
"vue": "^2.7.16",
"vue-i18n": "^8.0.0",
"vue-material": "^1.0.0-beta-10.2",
"vue-router": "^3.0.6",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.1",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.25.0",
"gh-pages": "^6.1.1",
"lint-staged": "^11.2.0",
"vite": "^5.2.10",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^0.20.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"eslint"
]
}
}