-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "portfolio-front",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.{ts,vue} --ignore-path .gitignore",
"lintfix": "eslint src/**/*.{ts,vue} --fix --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,vue}": [
"eslint"
]
},
"dependencies": {
"@mdi/font": "7.4.47",
"@tresjs/cientos": "^4.0.2",
"@tresjs/core": "^4.2.10",
"core-js": "^3.38.0",
"phaser": "^3.85.1",
"pinia": "^2.2.1",
"roboto-fontface": "^0.10.0",
"three": "^0.168.0",
"vue": "^3.4.37",
"vue-router": "^4.4.3",
"vuetify": "^3.6.14"
},
"devDependencies": {
"@antfu/eslint-config-vue": "^0.43.1",
"@babel/types": "^7.25.2",
"@types/node": "^22.1.0",
"@types/three": "^0.168.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/typescript-estree": "^6.21.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/eslint-config-typescript": "^13.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"unplugin-fonts": "^1.1.1",
"vite": "5.4.6",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.0.29"
},
"packageManager": "yarn@4.1.0"
}