-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
44
45
46
{
"name": "plane-blaster",
"version": "0.1.0",
"description": "A small 3d plane game in three.js",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --open --config bundler/webpack.dev.js",
"build": "webpack --config ./bundler/webpack.common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsc2001/plane-blaster.git"
},
"keywords": [
"game",
"js",
"three.js"
],
"author": "gsc2001",
"license": "ISC",
"bugs": {
"url": "https://github.com/gsc2001/plane-blaster/issues"
},
"homepage": "https://github.com/gsc2001/plane-blaster#readme",
"dependencies": {
"dat.gui": "^0.7.7",
"three": "^0.127.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.1",
"eslint": "^7.24.0",
"file-loader": "^6.2.0",
"glslify-loader": "^2.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}