-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.66 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
{
"name": "veloce",
"version": "1.0.0",
"author": "Alan Morel",
"license": "MIT",
"description": "veloce",
"repository": {
"type": "git",
"url": "https://github.com/AlanMorel/veloce.git"
},
"scripts": {
"dev": "nodemon --config ./nodemon.config.json ./server/Server.ts --watch",
"build": "yarn run build:client && yarn run build:server",
"build:client": "vite build --ssrManifest --outDir ./dist/client",
"build:server": "vite build --ssr ./src/entry-server.ts --outDir ./dist/server && tsc --project ./server/tsconfig.json && tsc-alias -p ./server/tsconfig.json",
"serve": "cross-env NODE_ENV=production node ./dist/server/Server.js"
},
"dependencies": {
"@vitejs/plugin-vue": "^2.1.0",
"axios": "^0.25.0",
"cross-env": "^7.0.3",
"compression": "^1.7.4",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"pinia": "^2.0.10",
"ts-node": "^10.4.0",
"tsc-alias": "^1.5.0",
"vue": "^3.2.29",
"vite": "^2.7.13",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-replace": "^3.0.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vue/compiler-sfc": "^3.2.29",
"@vue/server-renderer": "^3.2.29",
"eslint": "^8.7.0",
"eslint-plugin-vue": "^8.4.0",
"sass": "^1.49.0",
"typescript": "^4.5.5",
"vue-eslint-parser": "^8.2.0"
}
}