forked from hipstersmoothie/react-docgen-typescript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.35 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": "@channel.io/react-docgen-typescript-plugin",
"version": "1.0.0",
"description": "A webpack plugin to inject react typescript docgen information.",
"license": "MIT",
"repository": "channel-io/react-docgen-typescript-plugin",
"author": "Andrew Lisowski <[email protected]>, Channel Corp.",
"main": "dist/index.js",
"scripts": {
"build:example": "npm run build && webpack",
"build": "tsc -p tsconfig.build.json",
"start": "yarn build --watch",
"lint": "eslint src --ext .ts,.js",
"test": "npm run test:v4 && npm run test:v5",
"pretest:v4": "add-no-save @types/webpack ts-loader@8 webpack@4",
"test:v4": "jest",
"pretest:v5": "add-no-save webpack@5",
"test:v5": "jest",
"release": "auto shipit"
},
"keywords": [
"react",
"docgen",
"typescript",
"webpack",
"plugin"
],
"files": [
"dist"
],
"dependencies": {
"debug": "^4.1.1",
"endent": "^2.0.1",
"find-cache-dir": "^3.3.1",
"flat-cache": "^3.0.4",
"micromatch": "^4.0.2",
"react-docgen-typescript": "^2.0.0",
"tslib": "^2.0.0",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/find-cache-dir": "^3.2.0",
"@types/flat-cache": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.0.12",
"@types/react": "^17.0.0",
"@types/webpack-sources": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"auto": "^10.2.3",
"auto-config-hipstersmoothie": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-config-xo": "0.29.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "25.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3.1.3",
"jest": "^26.6.3",
"memfs": "^3.2.2",
"memory-fs": "^0.5.0",
"prettier": "^2.0.5",
"react": "^17.0.1",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"typescript": "^4.3.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"yarn-add-no-save": "^1.0.3"
},
"peerDependencies": {
"typescript": ">= 4.3.0",
"webpack": ">= 4"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
}
}