generated from Sceat/app-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
59
60
61
62
{
"name": "ares-editor",
"version": "0.0.0",
"type": "module",
"description": "JSON editor for AresRPG",
"scripts": {
"start": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix"
},
"dependencies": {
"@qvant/qui-max": "^0.17.0",
"@sceat/three-mcmodel": "^0.1.0",
"@tweenjs/tween.js": "^18.6.4",
"click-outside-vue3": "^4.0.1",
"deep-copy": "^1.4.2",
"deep-equal": "^2.1.0",
"idb-keyval": "^6.2.0",
"iterator-helper": "^1.3.4",
"three": "0.127.0",
"three-orbitcontrols": "2.96.3",
"vue": "^3.2.37",
"vue-router": "^4.1.2",
"vue-toastification": "^2.0.0-rc.5",
"vue3-highlightjs": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@vitejs/plugin-vue": "^3.0.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.0.0",
"husky": "4.3.8",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"pug": "^3.0.2",
"stylus": "^0.58.1",
"vite": "^3.0.0",
"vite-plugin-pwa": "^0.12.3",
"vue-eslint-parser": "^9.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}