forked from rohit-gohri/redocusaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "redocusaurus-monorepo",
"version": "0.0.0",
"private": "true",
"description": "Redoc for DocusaurusV2",
"scripts": {
"build": "lerna run build --ignore 'redocusaurus-example'",
"build:example": "lerna run build --scope 'redocusaurus-example'",
"clean": "lerna exec -- \"rm -rf dist* .tsbuild*.info\"",
"dev": "lerna run --parallel dev --ignore redocusaurus-example",
"dev:example": "lerna run --parallel dev --scope 'redocusaurus-example'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"release": "yarn build && changeset publish",
"start": "yarn build && lerna run start --stream --scope redocusaurus-example",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rohit-gohri/redocusaurus.git"
},
"keywords": [
"redoc",
"api-doc",
"docusaurus",
"docusaurus-plugin",
"docusaurus-theme"
],
"author": "Rohit Gohri <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohit-gohri/redocusaurus/issues"
},
"homepage": "https://github.com/rohit-gohri/redocusaurus#readme",
"dependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.2.8",
"@changesets/cli": "^2.16.0",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"concurrently": "^6.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=10.15.1"
},
"workspaces": {
"packages": [
"example",
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "yarn eslint --ext .js,.jsx,.ts,.tsx --fix"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
}
}