-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "dynasty",
"version": "1.0.0",
"description": "tools for df community to run community rounds",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"start": "cd client && yarn dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfdao/dynasty.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dfdao/dynasty/issues"
},
"homepage": "https://github.com/dfdao/dynasty#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,md}": [
"eslint --cache --fix"
],
"**/*.{ts,tsx,css,md}": [
"prettier --ignore-path .prettierignore --write"
]
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"lint-staged": "^13.0.3"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}