-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 831 Bytes
/
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
{
"name": "final-project",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/controversial/cs175-final-project.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp README.md LICENSE dist",
"preview": "vite preview",
"lint": "eslint . --ext=js,ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/three": "^0.146.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-glsl": "^0.5.4"
},
"dependencies": {
"@gltf-transform/core": "^2.4.7",
"gl-matrix": "^3.4.3"
}
}