-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"lint-staged": {
"src/**/*.ts": [
"prettier --write \"src/**/*.ts\""
],
"tests/**/*.ts": [
"prettier --write \"tests/**/*.ts\""
]
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "yarn eslint src/**/*.ts && yarn eslint tests/**/*.ts",
"test": "vitest run"
},
"devDependencies": {
"@types/lodash": "^4.14.198",
"@types/three": "^0.158.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@tabler/icons": "^2.40.0",
"lodash": "^4.17.21",
"three": "^0.158.0",
"vanjs-core": "^1.2.1"
},
"packageManager": "[email protected]"
}