-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
53
54
55
56
57
58
{
"private": true,
"scripts": {
"serve": "vite preview",
"build": "vite build",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"dev": "vite",
"start": "node .output/server/index.mjs"
},
"dependencies": {
"@3d-dice/dice-box": "^0.4.19",
"@mdi/font": "^6.5.95",
"@types/deep-freeze": "^0.1.2",
"deep-freeze": "^0.0.1",
"lodash": "^4.17.21",
"roboto-fontface": "*",
"vuetify": "^3.1.1",
"vuex": "^4.0.2",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-vue": "^1.2.4",
"@vue/cli-plugin-babel": "5.0.0-beta.7",
"@vue/cli-service": "5.0.0-beta.7",
"@vue/eslint-config-standard": "^5.1.2",
"@vuetify/vite-plugin": "^1.0.0-alpha.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^8.3.0",
"lint-staged": "^9.5.0",
"nuxt3": "^3.0.0-rc.4-27600153.ad42023",
"sass": "^1.38.0",
"sass-loader": "^10.0.0",
"typescript": "<4.5.0",
"vite": "^2.9.16",
"vue-cli-plugin-vuetify": "~2.4.5",
"vuetify-loader": "^2.0.0-alpha.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn lint:fix",
"git add"
]
}
}