forked from typescript-cheatsheets/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"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.git"
},
"keywords": [
"react",
"typescript",
"guides"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/typescript-cheatsheets/react/issues"
},
"homepage": "https://github.com/typescript-cheatsheets/react#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",
"prepare": "husky install",
"start": "yarn --cwd website start",
"build": "yarn --cwd website build"
},
"dependencies": {
"front-matter": "^4.0.2",
"markdown-toc": "^1.2.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"husky": "^7.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3"
}
}