-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "habitat-heroes",
"version": "0.0.1",
"description": "Helping to build habitats!",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"start": "webpack serve --config webpack/base.js --open",
"prepare": "node -e \"if(require('fs').existsSync('.git')){process.exit(1)}\" || husky install",
"lint": "eslint . --fix --ext .ts,.js,.tsx,.jsx && prettier --write \"src/**/*.{ts,js,tsx,jsx}\" --tab-width 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Habitat-Heroes/habitat-heroes.git"
},
"author": "",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/Habitat-Heroes/habitat-heroes/issues"
},
"homepage": "https://github.com/Habitat-Heroes/habitat-heroes#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.0",
"phaser": "^3.55.2",
"phaser3-plugin-isometric": "^0.0.7",
"redux-persist": "^6.0.0"
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
}
}