-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.84 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
56
57
58
{
"name": "vuefront-vite",
"license": "MIT",
"version": "0.0.2",
"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": {
"@types/lodash": "^4.14.178",
"@urql/vue": "^0.6.1",
"@vue/server-renderer": "^3.2.30",
"@vuefront/checkout-app": "^0.3.1",
"@vueuse/head": "^0.7.5",
"autoprefixer": "^10.4.2",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"graphql": "^16.3.0",
"postcss": "^8.4.6",
"sass": "^1.49.7",
"tailwindcss": "^3.0.21",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-voie": "^0.7.3",
"vite-plugin-vue-vuefront": "^0.1.8",
"vite2-graphql-plugin": "^0.0.4",
"vue": "^3.2.30",
"vuefront": "^0.5.11",
"vuex": "^4.0.2"
},
"devDependencies": {
"@optimize-lodash/rollup-plugin": "^3.0.0",
"@originjs/vite-plugin-commonjs": "^1.0.2",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-vue": "^2.2.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"extract-urls": "^1.3.2",
"get-urls": "^11.0.0",
"postcss-import": "^14.0.2",
"prettier": "^2.5.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.4",
"typescript": "^4.5.5",
"vite": "^2.8.1",
"vue-tsc": "^0.31.2"
}
}