-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
32 lines (32 loc) · 1.44 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
{
"name": "bluebubbles-server",
"version": "1.9.8",
"description": "BlueBubbles Server is the app that powers the BlueBubbles app ecosystem",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "concurrently \"cd ./packages/ui && npm run start\" \"cd ./packages/server && npm run start\"",
"build-ui": "cd ./packages/ui && npm run build && mkdir -p ../server/dist/static && rm -rf ../server/dist/static && cp -R ./build/** ../server/dist/ && cd ../../",
"build-server": "cd ./packages/server && npm run dist && cd ../../",
"release-server": "cd ./packages/server && npm run release && cd ../../",
"build": "npm run build-ui && npm run build-server && rm -rf ./dist && mkdir -p ./dist && cp -R ./packages/server/releases/* ./dist/ && rm -rf ./packages/server/releases/ && rm -rf ./packages/ui/build/",
"release": "npm run build-ui && npm run release-server"
},
"repository": "https://www.github.com/BlueBubblesApp/BlueBubbles-Server",
"author": "BlueBubbles Development Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://www.github.com/BlueBubblesApp/BlueBubbles-Server/issues"
},
"homepage": "https://www.bluebubbles.app",
"devEngines": {
"node": "20.11.x",
"npm": ">=10.x",
"python": ">=3.10.x"
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}