-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "trustred-cms",
"version": "1.0.0",
"description": "Self-hostable CMS for fire departments, aid organizations, and civil protection teams",
"license": "PolyForm-Noncommercial-1.0.0",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=\"--no-deprecation --max-old-space-size=8000\" next build",
"docker:build": "docker build -t trustred-cms:latest .",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "cross-env-shell NODE_OPTIONS=--no-deprecation \"rm -rf .next && next dev\"",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
"lint": "cross-env NODE_OPTIONS=--no-deprecation eslint .",
"migrate": "cross-env NODE_OPTIONS=--no-deprecation node --import=tsx/esm ./scripts/run-migrations.ts",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"seed": "cross-env NODE_OPTIONS=--no-deprecation node --import=tsx/esm ./scripts/seed.ts",
"seed:empty": "cross-env NODE_OPTIONS=--no-deprecation node --import=tsx/esm ./scripts/seed.ts --empty",
"seed:user": "cross-env NODE_OPTIONS=--no-deprecation node --import=tsx/esm ./scripts/seed-user.ts",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"test": "cross-env-shell NODE_OPTIONS=--no-deprecation \"npm run test:int && npm run test:e2e\"",
"test:e2e": "cross-env NODE_OPTIONS=\"--no-deprecation --import=tsx/esm\" playwright test --config=playwright.config.ts",
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts",
"verify:starter": "cross-env NODE_OPTIONS=--no-deprecation node --import=tsx/esm ./scripts/verify-starter-content.ts"
},
"dependencies": {
"@payloadcms/db-sqlite": "3.89.0",
"@payloadcms/next": "3.89.0",
"@payloadcms/plugin-form-builder": "3.89.0",
"@payloadcms/plugin-nested-docs": "3.89.0",
"@payloadcms/plugin-seo": "3.89.0",
"@payloadcms/richtext-lexical": "3.89.0",
"@payloadcms/storage-s3": "3.89.0",
"@payloadcms/ui": "3.89.0",
"cross-env": "^10.1.0",
"dotenv": "17.4.2",
"graphql": "^16.14.2",
"next": "16.3.5",
"nodemailer": "^10.0.10",
"payload": "3.89.0",
"react": "19.3.0",
"react-dom": "19.3.0",
"sanitize-html": "^2.17.7",
"sharp": "0.35.4",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@playwright/test": "1.63.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/react": "16.3.3",
"@types/node": "26.6.1",
"@types/nodemailer": "^8.0.2",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@types/sanitize-html": "^2.16.1",
"@vitejs/plugin-react": "6.1.1",
"eslint": "^9.39.5",
"eslint-config-next": "16.3.5",
"jsdom": "30.1.0",
"pnpm": "^11.26.0",
"prettier": "^3.9.8",
"tsx": "4.23.13",
"typescript": "~6.0.3",
"vitest": "5.0.1"
},
"engines": {
"node": "^22.13.0 || ^24.0.0 || >=26.0.0",
"pnpm": "^9 || ^10 || ^11"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"esbuild",
"unrs-resolver"
]
},
"allowScripts": {
"esbuild@0.18.20": true,
"esbuild@0.25.12": true,
"esbuild@0.28.2": true,
"fsevents": false,
"unrs-resolver@1.12.2": true
},
"overrides": {
"dompurify": "3.4.14"
}
}