-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
73 lines (73 loc) · 1.96 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-scss-theme-plugin",
"description": "A Webpack plugin for customizing Ant Design with SCSS.",
"version": "1.0.8",
"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/intoli/antd-scss-theme-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"live-reload",
"ant-design",
"less",
"sass",
"scss",
"less-loader",
"sass-loader",
"styles"
],
"author": "Intoli, LLC <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/intoli/antd-scss-theme-plugin/issues"
},
"homepage": "https://github.com/intoli/antd-scss-theme-plugin",
"files": [
"build/dist"
],
"dependencies": {
"less": "^2.3.7",
"loader-utils": "^1.1.0",
"scss-to-json": "^2.0.0"
},
"peerDependencies": {
"antd": "^3.2.0",
"less-loader": "^4.0.5",
"sass-loader": "^7.3.0"
},
"devDependencies": {
"antd": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.2.1",
"less": "^2.3.7",
"less-loader": "^4.0.5",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.3.0",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0"
}
}