-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
47
48
{
"name": "green-siege",
"version": "1.0.0",
"description": "A VR shooter game where you must defend your tree.",
"main": "./src/index.ejs",
"devDependencies": {
"@types/es6-shim": "^0.31.42",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"babylonjs": "^6.1.0",
"babylonjs-gui": "^6.1.0",
"babylonjs-loaders": "^6.1.0",
"http-server": "^14.1.1"
},
"scripts": {
"build": "webpack",
"start": "webpack serve",
"vr": "webpack && http-server -S -c-1 -C cert.pem dist/",
"deploy": "http-server -c-1 -p3630 dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brotherta/green-siege.git"
},
"keywords": [
"vr",
"game of web",
"shooter",
"video-game",
"game"
],
"author": "Rémi Cérès, Rémi Felin, Antoine Vidal",
"license": "ISC",
"bugs": {
"url": "https://github.com/Brotherta/green-siege/issues"
},
"homepage": "https://github.com/Brotherta/green-siege#readme"
}