-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 854 Bytes
/
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
{
"name": "vue-ssr-poc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --watch",
"watch:server": "node-dev index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"vue": "2.6.6",
"vue-loader": "^15.6.2",
"vue-server-renderer": "2.6.6",
"vue-template-compiler": "2.6.6",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"eslint": "5.8.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.1",
"node": "^11.9.0",
"npm-run-all": "^4.1.5",
"vue-ssr-webpack-plugin": "^3.0.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.5.2"
}
}