-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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
40
41
{
"name": "payload-jamstack-platform",
"version": "1.0.0",
"private": true,
"description": "Payload CMS v3 + Jamstack Platform - WordPress-like CMS with static-first frontends",
"keywords": [
"payload",
"cms",
"jamstack",
"nextjs",
"postgresql",
"railway"
],
"license": "MIT",
"author": "Opace Digital Agency",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:cms": "pnpm --filter @repo/cms dev",
"build": "pnpm -r build",
"build:cms": "pnpm --filter @repo/cms build",
"start": "pnpm -r --parallel start",
"start:cms": "pnpm --filter @repo/cms start",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"generate:types": "pnpm --filter @repo/cms generate:types",
"migrate": "pnpm --filter @repo/cms migrate",
"migrate:create": "pnpm --filter @repo/cms migrate:create",
"seed": "pnpm --filter @repo/cms seed",
"clean": "pnpm -r clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^22.10.0",
"dotenv-cli": "^11.0.0",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}