-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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": "ra2-ui",
"dependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"@vueuse/core": "^11.1.0",
"commonjs": "^0.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"qs": "^6.11.2",
"vite": "^5.0.2",
"vue": "^3.3.9",
"vue-router": "^4.2.5",
"vuedraggable": "^4.1.0",
"ws": "^8.14.2"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npx nodemon ./src/server/index.ts",
"clean": "rm -rf ./dist",
"prepare-client": "npx vite build",
"prepare-server": "npx tsc --outDir ./dist/serverjs -p tsconfig.build.json",
"build-pkg": "npx pkg .",
"build-all": "npm run prepare-client && npm run prepare-server && npm run build-pkg",
"start-electron": "electron ."
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/qs": "^6.9.10",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.16",
"electron": "^28.0.0",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1"
},
"pkg": {
"scripts": "./dist/serverjs/**/*.js",
"assets": "./dist/client/**/*",
"targets": [
"node18-win-x64",
"node18-linux-x64"
],
"outputPath": "./dist/server"
},
"bin": "./dist/serverjs/index.js",
"main": "./src/gui/index.js"
}