This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "react-docgen-typescript-loader",
"version": "3.7.2",
"description": "Webpack loader to generate docgen information from TypeScript React components.",
"keywords": [
"storybook",
"react",
"docgen",
"typescript",
"webpack",
"loader"
],
"homepage": "https://github.com/strothj/react-docgen-typescript-loader",
"bugs": "https://github.com/strothj/react-docgen-typescript-loader/issues",
"repository": "https://github.com/strothj/react-docgen-typescript-loader.git",
"author": "strothj (https://github.com/strothj)",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist/*"
],
"precommit": [
"lint",
"test",
"clean",
"build"
],
"scripts": {
"start": "tsc -p ./tsconfig.build.json -w",
"build": "tsc -p ./tsconfig.build.json",
"clean": "rimraf dist",
"test": "jest",
"lint": "tslint -p ./"
},
"dependencies": {
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"loader-utils": "^1.2.3",
"react-docgen-typescript": "^1.16.5"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.18",
"@types/memory-fs": "^0.3.2",
"@types/node": "^12.7.3",
"@types/react": "^16.9.2",
"@types/webpack": "^4.39.1",
"jest": "^24.9.0",
"memory-fs": "^0.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"react": "^16.9.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3"
}
}