-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
{
"name": "styles-webpack-plugin",
"version": "0.0.9",
"description": "一个处理样式资源的webpack插件",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"author": {
"name": "ccode",
"url": "https://github.com/imccode"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"types/"
],
"keywords": [
"styles-webpack-plugin",
"styles-webpack"
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/imccode/styles-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/imccode/styles-webpack-plugin/issues"
},
"homepage": "https://github.com/imccode/styles-webpack-plugin",
"scripts": {
"dev": "webpack --config ./example/webpack.config.js --mode development -w",
"build": "webpack --config ./example/webpack.config.js --mode production",
"tsc": "rm -rf types && tsc",
"publish-npm": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org",
"publish-npm:next": "rm -rf types && tsc && yarn publish --registry https://registry.npmjs.org --tag next "
},
"dependencies": {
"cache-loader": "^4.1.0",
"compression-webpack-plugin": "^3.0.1",
"cosmiconfig": "^6.0.0",
"css-loader": "^3.4.0",
"cssnano": "^4.1.10",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.25",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2"
},
"devDependencies": {
"@types/node": "^12.12.5",
"@types/webpack": "^4.41.0",
"prettier": "1.19.1",
"typescript": "latest",
"webpack": "^4.41.4"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"insertPragma": false,
"tabWidth": 2,
"useTabs": false
}
}