-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"name": "my-vue-app",
"version": "0.0.0",
"scripts": {
"dev": "node server",
"build": "yarn build:client && yarn build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.js --outDir dist/server",
"generate": "vite build --ssrManifest --outDir dist/static && yarn build:server && node prerender",
"serve": "cross-env NODE_ENV=production node server",
"debug": "node --inspect-brk server"
},
"dependencies": {
"emailjs-com": "^2.6.4",
"global": "^4.4.0",
"vue": "^3.0.5",
"vue-router": "^4.0.3",
"vuex": "^4.0.0-beta.4"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.2.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.11",
"@vue/server-renderer": "^3.0.6",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dep-import-type": "link:./dep-import-type",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-vue": "^7.0.0-beta.4",
"express": "^4.17.1",
"postcss": "^7",
"prettier": "^2.1.2",
"serve-static": "^1.14.1",
"stylelint-config-recommended": "^3.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.1.3",
"vite": "^2.2.3",
"vue-tsc": "^0.0.24"
}
}