This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "antd-theme",
"version": "0.3.5",
"description": "Provide runtime dynamic theme for ant design.",
"homepage": "https://wuzekang.github.io/antd-theme",
"repository": {
"url": "https://github.com/wuzekang/antd-theme"
},
"main": "lib/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./site/webpack.config.js --open",
"test": "jest",
"build": "tsc -d && tsc -b",
"release": "release-it",
"deploy": "cross-env NODE_ENV=production webpack --config ./site/webpack.config.js && gh-pages -d site/dist"
},
"keywords": [
"antd",
"theme",
"less-plugin",
"webpack-plugin",
"dynamic-themes"
],
"files": [
"lib",
"plugin"
],
"author": "wuzekang",
"license": "ISC",
"devDependencies": {
"@ant-design/aliyun-theme": "0.0.4",
"@ant-design/icons": "^4.1.0",
"@types/less": "^3.0.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"antd": "^4.2.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-preset-react-app": "^9.1.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"less": "3.11.1",
"less-loader": "^6.1.0",
"p-limit": "^2.3.0",
"react": "^16.8.0",
"react-color": "^2.18.0",
"react-dom": "^16.8.0",
"react-use": "^14.2.0",
"release-it": "^13.5.7",
"style-loader": "^1.2.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"semver": "^7.3.2",
"tapable": "^1.1.3",
"webpack-sources": "^1.4.3"
}
}