-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"assert": "^2.0.0",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.46.0",
"glslify-loader": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"webpack": "~5",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "~4.15.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"@tweenjs/tween.js": "^21.0.0",
"@types/three": "^0.155.0",
"obs-websocket-js": "^4.0.3",
"three": "^0.155.0",
"typescript": "^4.9.5",
"webmidi": "^3.1.6",
"webrtc-adapter": "^8.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start:dev": "webpack-dev-server --host 0.0.0.0 --hot --https --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
}
}