-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.07 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
{
"name": "@planning-poker/planning-poker",
"private": true,
"version": "1.0.0",
"bin": "packages/backend/build/bundle.js",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "lerna run dev --scope @planning-poker/backend --include-dependencies --parallel --stream",
"start": "node packages/backend/build/bundle.js",
"build": "lerna run build --scope @planning-poker/backend --include-dependencies && yarn copy-assets",
"copy-assets": "cpy 'packages/web/build/**/*' packages/backend/build/public",
"binary": "pkg .",
"docker-image": "docker build -t planning-poker:latest .",
"predocker": "yarn docker-image",
"docker": "docker run --name planning-poker -p 8080:8080 --rm planning-poker:latest"
},
"pkg": {
"assets": ["packages/backend/build/public/**/*"],
"targets": ["node16-linux-x64", "node16-linux-arm64", "node16-macos-arm64", "node16-win-x64"],
"outputPath": "build"
},
"dependencies": {},
"devDependencies": {
"lerna": "^8.0.0",
"typescript": "^5.3.2",
"cpy-cli": "^5.0.0",
"pkg": "^5.8.1"
}
}