forked from Sean-Bradley/Three.js-TypeScript-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 797 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 797 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
{
"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/dat.gui": "^0.7.5",
"@types/express": "^4.17.7",
"@types/node": "^13.13.15",
"@types/three": "^0.134.0",
"three": "^0.134.0",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"express": "^4.17.1"
}
}