-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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": "castle-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"start": "webpack serve --open --mode=development --port 5000",
"build": "webpack --mode=production",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kapaha/castle-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kapaha/castle-game/issues"
},
"homepage": "https://github.com/kapaha/castle-game#readme",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.7",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.1.0",
"prettier": "^2.3.2",
"url-loader": "^4.1.1",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}