-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
54
55
56
57
58
{
"name": "dwarf-quest",
"version": "0.0.1",
"description": "dwarves",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && NODE_ENV='production' webpack",
"start": "webpack-dev-server",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"lint": "eslint --ignore-path .gitignore .",
"deploy": "npm run build && gh-pages -d dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-chat/dwarf-quest.git"
},
"keywords": [
"dwarves"
],
"author": "dwarves",
"license": "ISC",
"bugs": {
"url": "https://github.com/dev-chat/dwarf-quest/issues"
},
"homepage": "https://github.com/dev-chat/dwarf-quest#readme",
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"phaser": "^3.20.1",
"gh-pages": "^2.1.1"
}
}