-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "tetsuo",
"private": true,
"repository": "git://github.com/SolidSolutionsDev/tetsuo.git",
"version": "1.6.1",
"main": "./dist/tetsuo.min.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/dat.gui": "^0.7.6",
"@types/howler": "^2.2.1",
"@types/jest": "^25.2.1",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.126.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.2",
"jest": "^25.4.0",
"live-server": "^1.2.1",
"prettier": "2.0.5",
"ts-jest": "^25.4.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-glsl-loader": "^1.0.1"
},
"scripts": {
"serve": "live-server --port=6969 --no-browser --watch=dist,dev",
"test": "jest --detectOpenHandles --colors",
"test:watch": "yarn test -- --watch",
"watch": "webpack --watch",
"dev": "concurrently \"yarn watch\" \"yarn serve\""
},
"dependencies": {
"dat.gui": "^0.7.7",
"howler": "^2.2.1",
"pixi.js": "^6.0.1",
"stats.js": "^0.17.0",
"three": "^0.126.1"
}
}