-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.14 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.14 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
{
"name": "saas-on-cf",
"version": "1.0.0",
"description": "",
"scripts": {
"setup": "pnpm i && pnpm run build:data-ops",
"build:data-ops": "pnpm run --filter data-ops build",
"dev:user-application": "pnpm run --filter user-application dev",
"deploy:staging:user-application": "pnpm run build:data-ops && pnpm run --filter user-application deploy:staging",
"deploy:production:user-application": "pnpm run build:data-ops && pnpm run --filter user-application deploy:production",
"dev:data-service": "pnpm run --filter data-service dev",
"deploy:staging:data-service": "pnpm run build:data-ops && pnpm run --filter data-service deploy:staging",
"deploy:production:data-service": "pnpm run build:data-ops && pnpm run --filter data-service deploy:production",
"seed:dev": "pnpm run --filter data-ops seed:dev",
"seed:staging": "pnpm run --filter data-ops seed:staging",
"seed:production": "pnpm run --filter data-ops seed:production"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.30.1",
"devDependencies": {
"@types/node": "^22.18.12",
"typescript": "^5.9.3"
}
}