-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "project-name",
"version": "1.0.0",
"description": "new Document",
"author": "",
"license": "MIT",
"service": {
"port": 7788,
"ip": "0.0.0.0"
},
"scripts": {
"dev": "NODE_ENV=dev node ./config/index.js",
"view": "NODE_ENV=production node ./config/index.js",
"build": "npm run client:build && npm run server:build",
"client:build": "NODE_ENV=production webpack --config config/webpack.client.pro.config.js --progress --hide-modules",
"server:build": "NODE_ENV=production webpack --config config/webpack.server.pro.config.js --progress --hide-modules"
},
"dependencies": {
"miox": "^5.1.13",
"miox-compose": "^5.1.13",
"miox-css": "^5.1.13",
"miox-router": "^5.1.13",
"miox-vue2x": "^5.1.13",
"miox-vue2x-classify": "^5.1.13",
"vue": "^2.5.6"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-import": "^1.4.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"koa": "^2.4.1",
"miox-koa-vue2x-server-render": "^5.1.13",
"miox-vue2x-webpack-config": "^5.1.13",
"webpack": "^3.6.0"
}
}