-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
108 lines (108 loc) · 3.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@ant-design/tools",
"version": "18.0.2",
"description": "tools for ant design",
"keywords": [
"react",
"tools"
],
"homepage": "http://github.com/ant-design/antd-tools",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:ant-design/antd-tools.git"
},
"bugs": {
"url": "http://github.com/ant-design/antd-tools/issues"
},
"license": "MIT",
"bin": {
"antd-tools": "./bin/antd-tools.js"
},
"scripts": {
"pub": "git push origin && npm publish --access public",
"postinstall": "node lib/init.js",
"lint": "eslint lib",
"prettier": "node ./script/prettier.js",
"test": "jest && npm run lint"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-classes": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-transform-spread": "^7.20.7",
"@babel/plugin-transform-typescript": "^7.10.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"ansi-styles": "^4.0.0",
"autoprefixer": "^10.0.1",
"babel-jest": "^28.1.0",
"babel-loader": "^9.0.0",
"babel-plugin-import": "^1.12.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"chalk": "^4.0.0",
"colorful": "^2.1.0",
"commander": "^6.1.0",
"css-loader": "^5.0.0",
"css-minimizer-webpack-plugin": "^1.1.5",
"gh-pages": "^3.0.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-strip-code": "^0.1.4",
"gulp-typescript": "^5.0.1",
"gulp-watch": "^5.0.1",
"is-windows": "^1.0.2",
"jsonml.js": "^0.1.0",
"less": "^4.0.0",
"less-loader": "^7.1.0",
"less-plugin-npm-import": "^2.1.0",
"majo": "^0.9.1",
"mark-twain": "^2.0.3",
"merge2": "^1.2.3",
"mini-css-extract-plugin": "^1.6.2",
"minimist": "^1.2.0",
"mkdirp": "^1.0.3",
"node-fetch": "2.6.7",
"object-assign": "~4.1.1",
"postcss": "^8.1.2",
"postcss-loader": "^4.0.4",
"prettier": "^2.0.1",
"progress": "^2.0.3",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^8.0.0",
"remark-stringify": "^8.0.0",
"remark-yaml-config": "^4.1.0",
"rimraf": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"through2": "^3.0.1",
"ts-loader": "^8.0.12",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^5.0.0",
"uglify-js": "^3.17.4",
"unified": "^8.0.0",
"url-loader": "^4.0.0",
"webpack": "^5.0.0",
"webpack-merge": "^4.2.1",
"webpackbar": "^5.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^27.0.3",
"pre-commit": "1.x"
},
"pre-commit": [
"lint",
"prettier"
]
}