generated from n1md7/three-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
{
"name": "threejs-setup",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.149.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3",
"vite": "^4.2.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"lil-gui": "^0.18.1",
"stats.js": "^0.17.0",
"three": "^0.150.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coveragePathIgnorePatterns": [
"main.ts"
],
"coverageDirectory": "../reports/coverage",
"testEnvironment": "node"
},
"engines": {
"node": "18.15.0",
"npm": ">=9.0.0"
},
"engineStrict": true
}