-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "learnp2p",
"version": "1.0.0",
"description": "Learn libp2p by building a distributed chat application",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2"
},
"scripts": {
"prettier-fix": "prettier --write './**/*.{json,md,html}'",
"eslint-fix": "eslint --fix './**/*.{js,jsx,css}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,css}": [
"prettier --write",
"eslint --fix"
],
"./**/*.{json,md,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/shresthagrawal/learnp2p.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/shresthagrawal/learnp2p/issues"
},
"homepage": "https://github.com/shresthagrawal/learnp2p#readme"
}