-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 2.72 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@baselinejs/core",
"version": "0.0.20",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"homepage": "https://baselinejs.com",
"repository": {
"type": "git",
"url": "https://github.com/Baseline-JS/core.git"
},
"author": "Baseline JS",
"description": "Baseline JS is a serverless first full-stack JavaScript framework for building modern web applications.",
"license": "MIT",
"workspaces": [
"packages/*",
"shared/*",
"commands/*"
],
"scripts": {
"region": "./scripts/set-region.sh",
"aws:profile": "./scripts/setup-aws-profile.sh",
"setup": "./scripts/setup.sh",
"add:env:local": "./scripts/add-env-var.sh local",
"add:env:staging": "./scripts/add-env-var.sh staging",
"add:env:prod": "./scripts/add-env-var.sh prod",
"generate:env:local": "./scripts/generate-env-vars.sh local",
"generate:env:staging": "./scripts/generate-env-vars.sh staging",
"generate:env:prod": "./scripts/generate-env-vars.sh prod",
"urls:staging": "./scripts/project-urls.sh staging",
"urls:prod": "./scripts/project-urls.sh prod",
"lint": "pnpm --if-present --recursive --parallel run lint",
"build": "pnpm --if-present --recursive --parallel run build",
"pretty": "pnpm --if-present --recursive --parallel run pretty",
"add:object": "pnpm --filter @baseline/add-object start",
"add:user:staging": "pnpm --filter @baseline/api run add:user:staging",
"add:user:prod": "pnpm --filter @baseline/api run add:user:prod",
"deploy:staging": "pnpm --filter @baseline/api run deploy:staging && pnpm --filter @baseline/admin --filter @baseline/web --if-present --recursive --parallel run deploy:staging",
"remove:staging": "pnpm --filter @baseline/api --filter @baseline/admin --filter @baseline/web --if-present --recursive --parallel run remove:staging",
"deploy:prod": "pnpm --filter @baseline/api run deploy:prod && pnpm --filter @baseline/admin --filter @baseline/web --if-present --recursive --parallel run deploy:prod",
"remove:prod": "pnpm --filter @baseline/api --filter @baseline/admin --filter @baseline/web --if-present --recursive --parallel run remove:prod",
"start:api": "pnpm --filter @baseline/api run start",
"start:admin": "pnpm --filter @baseline/admin run start",
"start:web": "pnpm --filter @baseline/web run start",
"install:requirements": "./scripts/install-requirements.sh"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.13.0",
"typescript-eslint": "8.18.1"
},
"resolutions": {
"fast-xml-parser": "4.4.1",
"nanoid": "3.3.8"
}
}