-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 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
{
"name": "template-vue-ssr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development babel-node index",
"build": "rimraf dist && npm run build:client && npm run build:server",
"build:client": "webpack --config ./configs/webpack.client.config.babel.js --progress --hide-modules",
"build:server": "webpack --config ./configs/webpack.server.config.babel.js --progress --hide-modules",
"compile:production": "babel index.js -o index-production.js",
"start": "npm run compile:production && node index-production",
"lint": "npm run lint:src && npm run lint:configs",
"lint:src": "./node_modules/.bin/eslint src/* --ext .js,.vue",
"lint:configs": "./node_modules/.bin/eslint configs/* --ext .js",
"pm2": "cross-env NODE_ENV=production npm run build && npm run compile:production && pm2 start pm2.json"
},
"pre-commit": [
"lint"
],
"author": "",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.3.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-component": "^1.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-loader": "^14.2.3",
"vue-server-renderer": "^2.5.17",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"cookie-parser": "^1.4.3",
"es6-promise": "^4.2.5",
"lodash": "^4.17.11",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"engines": {
"node": ">= 8.0.0"
}
}