-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.34 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
86
87
{
"name": "dictc",
"version": "0.3.0",
"description": "Generate a manual for your React component lib",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config core/webpack/webpack.config.js --open",
"tslint": "tslint --project .",
"tslint:fix": "tslint --fix --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuqingc/dictc.git"
},
"keywords": [
"React",
"generate documentation",
"React component"
],
"author": "Yuqing Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuqingc/dictc/issues"
},
"homepage": "https://github.com/yuqingc/dictc#readme",
"bin": {
"dictc": "./bin/dictc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix --project .",
"git add"
]
},
"devDependencies": {
"husky": "1.0.0-rc.13",
"lint-staged": "^7.2.0",
"tslint": "^5.11.0"
},
"dependencies": {
"@types/prismjs": "^1.9.0",
"@types/react": "^16.4.6",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.0.6",
"@types/react-router": "^4.0.29",
"@types/react-router-dom": "^4.2.7",
"add-asset-html-webpack-plugin": "^2.1.3",
"antd": "^3.7.0",
"autoprefixer": "^9.0.0",
"awesome-typescript-loader": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.3",
"hard-source-webpack-plugin": "^0.11.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"node-sass": "^4.9.2",
"parse-prop-types": "^0.3.0",
"postcss-loader": "^2.1.6",
"prismjs": "^1.15.0",
"raw-loader": "^0.5.1",
"react": "^16.4.1",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.1",
"react-live": "^1.11.0",
"react-markdown": "^3.3.4",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^2.9.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}