-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.86 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
{
"name": "vue3-ssr-realworld-example-app",
"version": "1.1.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn build:client && yarn build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server --outDir dist/server",
"dev": "node server-dev.js",
"serve": "node server-prod.js",
"check-ts-errors": "yarn tsc --noEmit && yarn vti diagnostics",
"lint": "eslint \"src/**/*.{js,ts,vue}\"",
"test": "yarn check-ts-errors && yarn lint",
"perf": "yarn build && clinic doctor --on-port=\"sleep 5 && autocannon http://localhost:8080 -a 500 -c 50 && sleep 5 && autocannon http://localhost:8080 -a 10 -c 2 && sleep 5\" -- node server-prod.js",
"prepare": "husky install"
},
"dependencies": {
"@harlem/core": "^1.3.1",
"@harlem/plugin-ssr": "^1.3.1",
"@vue/server-renderer": "3.2.27",
"clinic": "^11.0.0",
"cross-fetch": "^3.1.4",
"insane": "^2.6.2",
"js-cookie": "^2.2.1",
"koa": "^2.13.1",
"koa-connect": "^2.1.0",
"koa-send": "^5.0.1",
"marked": "^2.0.3",
"vue": "3.2.27",
"vue-router": "4.0.6"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@types/js-cookie": "^2.2.6",
"@types/koa-send": "^4.1.2",
"@types/marked": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "3.2.27",
"eslint": "^7.25.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"rollup-plugin-analyzer": "^4.0.0",
"typescript": "^4.2.4",
"vite": "^2.2.3",
"vti": "^0.1.1"
}
}