forked from RomainLanz/romainlanz.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 803 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 803 Bytes
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
{
"type": "module",
"private": true,
"packageManager": "yarn@4.6.0",
"license": "UNLICENSED",
"scripts": {
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:build": "docker build . -t site",
"docker:run": "docker run --env-file ./apps/romainlanz.com/.env -e NODE_ENV=production -e HOST=0.0.0.0 -e DB_HOST=host.docker.internal -it -p 3333:3333 --add-host=host.docker.internal:host-gateway site",
"lint": "eslint .",
"format": "prettier .",
"taze": "yarn dlx taze -r -I",
"typecheck": "yarn workspaces foreach -p -A run typecheck"
},
"devDependencies": {
"@julr/tooling-configs": "^3.0.1",
"eslint": "^9.17.0",
"prettier": "^3.4.2"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"volta": {
"node": "22.12.0"
}
}