-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.41 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
{
"name": "imgminify",
"version": "1.0.0",
"description": "An online image optimizer",
"repository": {
"type": "git",
"url": "[email protected]:wallstreetcn/imgminify.git"
},
"homepage": "https://github.com/wallstreetcn/imgminify#readme",
"scripts": {
"start": "cross-env NODE_ENV=production server/bin/www",
"dev": "cross-env NODE_ENV=development npx nodemon server/bin/www",
"clean:build": "rimraf server/public/index.html && rimraf server/public/assets",
"clean:images": "rimraf server/public/images/*",
"build": "npm run clean:build && cross-env NODE_ENV=production webpack --config build/webpack.conf.js",
"lint": "eslint --ext .js,.vue client server"
},
"author": "Yvan Yang",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.7.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.6",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"vue-loader": "^15.2.6",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.3"
},
"dependencies": {
"archiver": "^2.1.1",
"body-parser": "^1.18.3",
"concat-stream": "^1.6.2",
"cross-env": "^5.2.0",
"debug": "^3.1.0",
"express": "^4.16.3",
"filenamify": "^2.1.0",
"filesize": "^3.6.1",
"gm": "^1.23.1",
"http-errors": "^1.7.0",
"mkdirp": "^0.5.1",
"morgan": "^1.9.0",
"multer": "^1.3.1",
"muse-ui": "^3.0.0-rc.5",
"pngquant": "^1.3.0",
"vue": "^2.5.16",
"which": "^1.3.1"
}
}