Organized the differences between server and docker versions.
We are launching a docker version (server version) today so we want to just organize the repo so its easier to navigate.
This commit is contained in:
60
desktop/package.json
Normal file
60
desktop/package.json
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"name": "waifu-board",
|
||||
"version": "2.0.0",
|
||||
"description": "",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"start": "tsc && node server.js",
|
||||
"electron": "tsc && electron .",
|
||||
"dist": "npm run build && electron-builder"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"type": "commonjs",
|
||||
"dependencies": {
|
||||
"@fastify/static": "^8.3.0",
|
||||
"@ryuziii/discord-rpc": "^1.0.1-rc.1",
|
||||
"bcrypt": "^6.0.0",
|
||||
"bindings": "^1.5.0",
|
||||
"cheerio": "^1.1.2",
|
||||
"dotenv": "^17.2.3",
|
||||
"fastify": "^5.6.2",
|
||||
"jsonwebtoken": "^9.0.3",
|
||||
"node-addon-api": "^8.5.0",
|
||||
"playwright-chromium": "^1.57.0",
|
||||
"sqlite3": "^5.1.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bcrypt": "^6.0.0",
|
||||
"@types/jsonwebtoken": "^9.0.10",
|
||||
"@types/node": "^24.0.0",
|
||||
"electron": "^39.2.5",
|
||||
"electron-builder": "^26.0.12",
|
||||
"node-gyp": "^12.1.0",
|
||||
"ts-node": "^10.9.0",
|
||||
"typescript": "^5.3.0"
|
||||
},
|
||||
"build": {
|
||||
"appId": "app.waifuboard",
|
||||
"productName": "Waifu Board",
|
||||
"files": [
|
||||
"electron/**/*",
|
||||
"server.js",
|
||||
"main.js",
|
||||
"preload.js",
|
||||
"package.json",
|
||||
"views/**/*",
|
||||
"src/scripts/**/*",
|
||||
"public/assets/*"
|
||||
],
|
||||
"extraResources": [
|
||||
"./.env"
|
||||
],
|
||||
"win": {
|
||||
"target": "portable",
|
||||
"icon": "public/assets/waifuboards.ico"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user