-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "battle-of-wits",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:js": "eslint --ext .js --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adryd325/battle-of-wits.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adryd325/battle-of-wits/issues"
},
"homepage": "https://adryd.co/wits.mp4",
"dependencies": {
"jimp": "^0.14.0",
"npmlog": "^4.1.2",
"polka": "^0.5.2"
}
}