-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "vue-ssr-pro-with-express",
"version": "1.0.0",
"description": "vue app production with express (ssr mode)",
"author": "yemiancheng <ymc-github@gmail.com>",
"private": true,
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "exit \"0\"",
"test:e2e": "exit \"0\"",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs --fix",
"lint:no-fix": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"start": "cross-env NODE_ENV=production node app/server.js",
"pro": "cross-env NODE_ENV=production node app/server.js",
"pro:ssr": "cross-env NODE_ENV=production node app/server.js"
},
"engines": {
"node": ">=7.6",
"npm": ">=4.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^2.3.0",
"es6-promise": "^4.2.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-multiparty": "^2.2.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"serve-favicon": "^2.5.0",
"lru-cache": "^4.1.1",
"vue": "^2.5.13",
"vue-i18n": "^8.1.0",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.13",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"license": "MIT"
}