This repository was archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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
49
50
51
52
53
{
"name": "nohero",
"version": "0.1.0",
"description": "No Hero (2D Dungeon RPG)",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "webpack --config webpack/prod.js",
"start": "webpack serve --config webpack/base.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kit-p/COMP4451-NoHero.git"
},
"author": "Kit-p <kpangaa@connect.ust.hk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kit-p/COMP4451-NoHero/issues"
},
"homepage": "https://github.com/Kit-p/COMP4451-NoHero#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"raw-loader": "^4.0.2",
"simple-git-hooks": "^2.2.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"easystarjs": "^0.4.4",
"phaser": "^3.53.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}