-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "dont-starve-together-cookbook",
"license": "MIT",
"private": true,
"version": "1.1.4",
"author": "Strelkov Dmitrii, [email protected]",
"type": "module",
"scripts": {
"dev": "node server",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.js --outDir dist/server",
"serve": "cross-env NODE_ENV=production node server",
"pm2start": "yarn install && yarn build && pm2 delete dst-cookbook && pm2 --name 'dst-cookbook' start 'yarn serve'"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"@vueuse/head": "^0.7.9",
"autoprefixer": "^10.4.8",
"floating-vue": "2.0.0-beta.19",
"lodash-es": "^4.17.21",
"pinia": "^2.0.21",
"postcss": "^8.4.16",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/compiler-sfc": "^3.2.38",
"@vue/server-renderer": "^3.2.38",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-plugin-vue": "^9.4.0",
"express": "^4.18.1",
"postcss-import": "^15.0.0",
"rollup": "^2.79.0",
"rollup-plugin-visualizer": "^5.8.1",
"sass": "^1.54.8",
"serve-static": "^1.15.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-eslint": "^1.8.1"
}
}