-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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
{
"name": "leafer-games",
"private": true,
"version": "0.0.0",
"type": "module",
"License": "MIT",
"description": "leafer-games",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint --fix \"./**/*.{vue,ts}\"",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"animejs": "^3.2.2",
"ant-design-vue": "~4.2.6",
"leafer-ui": "^1.6.7",
"normalize.css": "^8.0.1",
"vue": "^3.5.16",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@leafer-ui/interface": "^1.6.7",
"@types/animejs": "^3.1.13",
"@types/node": "^20.17.57",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.2.4",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.33.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"typescript": "^5.8.3",
"typescript-eslint": "^7.18.0",
"vite": "^5.4.19",
"vue-tsc": "^2.2.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}