-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 930 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 930 Bytes
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
{
"name": "three.js-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "webpack --config ./webpack.prod.js",
"dev": "webpack serve --config ./webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js"
},
"author": "Sean Bradley",
"license": "ISC",
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.23",
"@types/three": "^0.140.0",
"three": "^0.140.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^0.27.2",
"express": "^4.17.3",
"prismarine-nbt": "^2.2.1",
"prismarine-schematic": "^1.2.3",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
}
}