-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "threejs-fps",
"version": "1.0.0",
"description": "threejs typescript",
"main": "build/main.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development --config=webpack.config.dev.js",
"ts-build": "tsc --build --clean tsconfig.json",
"server": "node ./server/main.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sugidaffection/threejs-webpack-typescript.git"
},
"dependencies": {
"@types/socket.io-client": "^1.4.33",
"cannon-es": "^0.18.0",
"express": "^4.17.1",
"socket.io": "^4.5.1",
"socket.io-client": "^2.3.0",
"three": "^0.136.0"
},
"devDependencies": {
"@types/three": "^0.136.1",
"autoprefixer": "^10.4.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.6",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.11",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
}
}