forked from typescript-cheatsheets/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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": "react-typescript-cheatsheet",
"version": "1.0.0",
"description": "this package.json is just for maintenance work",
"repository": {
"type": "git",
"url": "git+https://github.com/typescript-cheatsheets/react-typescript-cheatsheet.git"
},
"keywords": [
"react",
"typescript",
"guides"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/issues"
},
"homepage": "https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#readme",
"scripts": {
"format-readme": "prettier --write \"README.md\"",
"gen-readme": "node genReadme.js",
"format": "prettier --write \"**/*.md\"",
"format:check": "prettier --check \"**/*.md\"",
"postinstall": "cd website && yarn",
"start": "yarn --cwd website start",
"build": "yarn --cwd website build"
},
"dependencies": {
"@octokit/rest": "^16.43.1",
"front-matter": "^4.0.2",
"markdown-toc": "^1.2.0"
},
"devDependencies": {
"danger": "^10.1.1",
"danger-plugin-spellcheck": "^1.5.0",
"husky": "^4.2.5",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}