-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "dungeon-game",
"version": "0.0.0",
"description": "dungeon game",
"main": "app.js",
"engines": {
"node": "^14.0.0"
},
"scripts": {
"lint": "eslint -c config/.eslintrc src",
"lint-fix": "eslint --fix -c config/.eslintrc src",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config config/webpack.config.js --open --env.NODE_ENV=dev",
"build": "npx webpack --config config/webpack.config.js --env.NODE_ENV=prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixmariotto/dungeon-game.git"
},
"keywords": [
"javascript",
"3D",
"game"
],
"author": "[email protected]",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/felixmariotto/dungeon-game/issues"
},
"homepage": "https://github.com/felixmariotto/dungeon-game#readme",
"dependencies": {
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"style-loader": "^2.0.0",
"three": "^0.129.0",
"three-mesh-ui": "^4.7.4",
"webpack": "^5.38.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}