-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 900 Bytes
/
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
{
"name": "threejs-typescript-webpack-boilerplate",
"version": "1.0.0",
"description": "A basic, ready to rumble, Three.js - TypeScript and Webpack enabled boilerplate template to kick-off your new project.",
"repository": {
"type": "git",
"url": "https://github.com/DaanDeSmedt/threejs-typescript-webpack-boilerplate"
},
"keywords": [
"Three.js",
"TypeScript",
"Webpack",
"boilerplate",
"template"
],
"author": "Daan De Smedt",
"license": "ISC",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"three": "^0.135.0"
},
"devDependencies": {
"@types/three": "^0.134.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
}
}