forked from intoli/antd-scss-theme-plugin
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.18 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
{
"name": "@inventium/antd-scss-theme-plugin",
"description": "A Webpack plugin for customizing Ant Design with SCSS.",
"version": "1.1.0",
"main": "build/dist/lib/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir build/dist/lib",
"test": "cross-env NODE_ENV=testing jest",
"test:watch": "cross-env NODE_ENV=testing jest --watch",
"watch": "cross-env NODE_ENV=development webpack --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/inventium-tech/antd-scss-theme-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"live-reload",
"ant-design",
"less",
"sass",
"scss",
"less-loader",
"sass-loader",
"styles"
],
"author": "inventium Tech, <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/inventium-tech/antd-scss-theme-plugin/issues"
},
"homepage": "https://github.com/inventium-tech/antd-scss-theme-plugin",
"files": [
"build/dist"
],
"dependencies": {
"loader-utils": "^1.2.3",
"scss-to-json": "^2.0.0"
},
"peerDependencies": {
"antd": "^3.26.6",
"less-loader": "^5.0.0",
"sass-loader": "^8.0.2"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"antd": "^3.26.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.2",
"webpack": "^4.41.5",
"webpack-node-externals": "^1.7.2"
}
}