-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.43 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.43 KB
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
{
"name": "planning-chess",
"version": "1.0.0",
"description": "The consensus-based chess inspired estimation game",
"workspaces": [
"services/shared",
"services/api",
"services/app"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean:dist": "rimraf services/*/dist",
"clean:lerna": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"clean": "run-s clean:lerna clean:dist clean:build clean:root",
"dev": "lerna run dev --parallel",
"start": "lerna run start --parallel",
"build": "lerna run build --scope @planning-chess/shared && lerna run build --ignore @planning-chess/shared",
"build:shared": "lerna run build --scope @planning-chess/shared",
"lint": "lerna run lint --concurrency 1",
"ci": "lerna run ci",
"run": "docker run -d -p 8080:8081 --name=planning-chess planning-chess:latest",
"nuke": "lerna run nuke --parallel && npm run clean:root",
"package": "docker build -t planning-chess-servic.node:latest .",
"deploy": "aws lightsail push-container-image --region eu-west-2 --service-name planning-chess-servic --label node --image planning-chess-servic.node:latest --profile planningchess"
},
"repository": {
"type": "git",
"url": "git@github.com:ZenitechSoftware/planning-chess.git"
},
"author": "Planning Chess",
"license": "MIT",
"devDependencies": {
"lerna": "^4.0.0"
},
"dependencies": {
"react-scripts": "^5.0.1"
}
}