-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
107 lines (107 loc) · 2.73 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
{
"name": "guido",
"version": "4.9.2",
"description": "基于webpack4的一键式开发工具,集成handlebars、雪碧图、SVG Sprite、自定义资源注入等方式",
"repository": {
"type": "git",
"url": "git+https://github.com/zuzucheFE/guido.git"
},
"bugs": {
"url": "https://github.com/zuzucheFE/guido/issues"
},
"keywords": [
"guido",
"webpack",
"framework",
"tools",
"frontend"
],
"files": [
"bin/",
"lib/"
],
"scripts": {
"build:examples": "cd examples && node buildAll.js",
"test": "jest",
"travis:test": "npm run test",
"prettier": "prettier --trailing-comma es5 --single-quote --write 'lib/*/*.js'"
},
"license": "MIT",
"engines": {
"node": ">=10.13.0"
},
"bin": {
"guido": "./bin/guido.js"
},
"main": "lib/service.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"devDependencies": {
"@babel/runtime-corejs3": "7.9.2",
"babel-preset-zuzuche": "2.7.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2"
},
"dependencies": {
"address": "1.1.2",
"assets-webpack-plugin": "3.9.12",
"autoprefixer": "9.7.5",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"chalk": "3.0.0",
"css-loader": "3.4.2",
"del": "5.1.0",
"detect-port-alt": "1.1.6",
"eslint": "6.8.0",
"eslint-loader": "3.0.3",
"eslint-plugin-react": "7.19.0",
"extend": "3.0.2",
"file-loader": "6.0.0",
"filesize": "6.1.0",
"friendly-errors-webpack-plugin": "1.7.0",
"glob": "7.1.6",
"gzip-size": "5.1.1",
"handlebars": "4.7.3",
"handlebars-loader": "1.7.1",
"hard-source-webpack-plugin": "0.13.1",
"html-webpack-plugin": "4.0.0-beta.11",
"image-webpack-loader": "6.0.0",
"imagemin-mozjpeg": "8.0.0",
"imagemin-pngquant": "8.0.0",
"imagemin-svgo": "7.1.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-loader": "3.0.0",
"postcss-safe-parser": "4.0.2",
"postcss-sprites": "4.2.1",
"recursive-readdir": "2.2.2",
"sass-loader": "8.0.2",
"strip-ansi": "6.0.0",
"style-loader": "1.1.3",
"svg-sprite-loader": "4.1.6",
"svg-url-loader": "3.0.3",
"svgo": "1.3.2",
"svgo-loader": "2.2.1",
"terser-webpack-plugin": "2.3.5",
"text-table": "0.2.0",
"url": "0.11.0",
"url-loader": "4.0.0",
"webpack": "4.42.1",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2",
"webpackbar": "4.0.0"
}
}