-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "optim-techblog-vueexpressts-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "node ./dist/server.js",
"watch:frontend": "vue-cli-service build --watch",
"build:frontend": "vue-cli-service build",
"watch:backend": "tsc-watch -b tsconfig.backend.json",
"build:backend": "tsc -b tsconfig.backend.json",
"serve:backend": "nodemon ./dist/server.js"
},
"dependencies": {
"@types/compression": "^1.7.0",
"@types/core-js": "^2.5.3",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/lusca": "^1.6.2",
"compression": "^1.7.4",
"core-js": "^3.6.5",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"lusca": "^1.6.1",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.2.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.0",
"@vue/cli-plugin-typescript": "^4.5.0",
"@vue/cli-service": "^4.5.0",
"typescript": "~3.9.3",
"vue-template-compiler": "^2.6.11"
}
}