-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 928 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "sea-stack-app",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"build-image": "export SEA_STACK_VERSION=$(jq -r .version apps/web/package.json) && docker build . -t ghcr.io/seastackapp/seastack:latest -t ghcr.io/seastackapp/seastack:$SEA_STACK_VERSION",
"push-image": "export SEA_STACK_VERSION=$(jq -r .version apps/web/package.json) && docker push ghcr.io/seastackapp/seastack:latest && docker push ghcr.io/seastackapp/seastack:$SEA_STACK_VERSION"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.6.3",
"typescript": "5.9.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=24.8.0"
}
}