This repository was archived by the owner on Nov 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.48 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.48 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
89
90
91
92
93
94
95
96
97
{
"name": "next-test",
"version": "0.1.0",
"private": true,
"scripts": {
"build:only": "next build && npm --prefix backend run build",
"build": "next build",
"build:backend": "npm --prefix backend run build",
"build:prod": "next build && npm --prefix backend run build",
"start:backend": "cd backend && node ./dist/server.js",
"start:frontend": "next start",
"start:prod": "pm2 start ecosystem.config.js",
"stop:prod": "pm2 delete all",
"restart:prod": "pm2 restart all",
"logs:prod": "pm2 logs",
"status:prod": "pm2 status",
"deploy:zero-downtime": "./scripts/zero-downtime-deploy.sh",
"deploy:prod": "./scripts/prod-start.sh",
"backup:pm2": "pm2 dump ~/pm2-backup-$(date +%Y%m%d-%H%M%S).json",
"health:check": "curl -f http://localhost:3000 && curl -f http://localhost:8080/health",
"check": "prettier --check .",
"security:audit": "npm audit --audit-level moderate",
"security:audit:fix": "npm audit fix",
"security:outdated": "npm outdated",
"security:check-all": "npm run security:audit && (npm run security:outdated || echo 'Outdated packages found') && npm --prefix=backend run security:audit && (npm --prefix=backend run security:outdated || echo 'Backend outdated packages found')",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"dev": "concurrently \"next dev\" \"cd backend/ && npm run start:dev\"",
"format": "prettier --write .",
"install-all": "concurrently \"npm install\" \"cd backend/ && npm install\"",
"lint": "next lint",
"start": "next start",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "jest"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^17.1.6",
"@contentful/rich-text-react-renderer": "^16.1.5",
"@contentful/rich-text-types": "^17.2.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@formatjs/intl-localematcher": "^0.6.2",
"@meronex/icons": "^4.0.0",
"@mui/material": "^7.3.5",
"@newjersey/njwds": "^2.6.1",
"@phosphor-icons/react": "^2.1.10",
"dayjs": "^1.11.19",
"dompurify": "^3.3.0",
"fuse.js": "^7.1.0",
"http-proxy-middleware": "^3.0.5",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"marked": "^16.4.1",
"marked-gfm-heading-id": "^4.1.3",
"negotiator": "^1.0.0",
"next": "^15.5.6",
"nodemailer": "^7.0.10",
"react": "^19.1.1",
"react-dom": "^19.2.0",
"react-paginate": "^8.3.0",
"react-to-print": "^3.2.0",
"react-tooltip": "^5.30.0",
"run": "^1.5.0",
"sass": "^1.94.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.2.0",
"@types/jest": "^30.0.0",
"@types/markdown-it": "^14.1.2",
"@types/marked": "^6.0.0",
"@types/negotiator": "^0.6.4",
"@types/node": "^24.10.1",
"@types/nodemailer": "^7.0.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cypress": "^15.6.0",
"cypress-axe": "^1.7.0",
"eslint": "^9.39.1",
"eslint-config-next": "^15.5.6",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"ts-node": "^10.9.2",
"typescript": "5.9.3",
"wait-on": "^9.0.1"
}
}