-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1019 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
34
35
36
37
38
39
40
41
{
"name": "roulette",
"version": "0.0.1",
"main": "src/index.ts",
"license": "UNLICENSED",
"type": "module",
"private": true,
"scripts": {
"preview": "vite preview",
"start": "npm run build",
"test": "bun test",
"test:coverage": "bun test --coverage",
"dev": "vite",
"build": "vite build",
"lint": "eslint -c eslint.config.js './src/**/*.{ts,tsx}'",
"prepare": "husky"
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.1",
"coveralls": "^3.0.0",
"dat.gui": "^0.7.1",
"jest": "^22.4.2",
"lodash": "^4.17.5",
"nanoid": "^5.0.6",
"three": "^0.161.0",
"vite": "^5.1.3"
},
"devDependencies": {
"@happy-dom/global-registrator": "^13.3.8",
"@types/jasmine": "^2.8.6",
"@types/jest": "^22.2.0",
"@types/lodash": "^4.14.104",
"@types/node": "^9.6.0",
"@types/three": "^0.161.2",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"sass": "^1.71.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.2"
}
}