-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·71 lines (71 loc) · 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
{
"name": "webframework",
"version": "1.0.0",
"description": "基于BFF层的前后端通用框架",
"main": "index.js",
"scripts": {
"start": "",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "npm run webpack:dev && npm run server:dev",
"build": "npm run webpack:prod && npm run server:prod",
"webpack:dev": "better-npm-run webpack:dev",
"webpack:prod": "better-npm-run webpack:prod",
"server:dev": "cross-env NODE_ENV=development gulp",
"server:prod": "cross-env NODE_ENV=production gulp"
},
"betterScripts": {
"webpack:dev": {
"command": "webpack --progress --colors",
"env": {
"NODE_ENV": "development"
}
},
"webpack:prod": {
"command": "webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
}
},
"keywords": [],
"author": "悬笔e绝",
"license": "ISC",
"dependencies": {
"awilix": "^3.0.3",
"awilix-koa": "^2.1.0",
"better-npm-run": "^0.1.0",
"co": "^4.6.0",
"cross-env": "^5.1.3",
"koa": "^2.4.1",
"koa-simple-router": "^0.2.0",
"koa-static": "^4.0.2",
"koa-swig": "^2.2.1",
"lodash": "^4.17.4",
"log4js": "^2.5.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-rollup": "^2.15.0",
"gulp-watch": "^5.0.0",
"happypack": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.0.10",
"postcss-nested": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
}
}