-
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 731 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 731 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
{
"name": "three.js-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "webpack --config ./src/client/webpack.prod.js",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js"
},
"author": "Sean Bradley",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"@types/three": "^0.182.0",
"three": "^0.183.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"express": "^5.2.1"
}
}