-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.13 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.13 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
98
{
"name": "dmsp_frontend_prototype",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"clean-build": "rm -rf node_modules/.cache && rm -rf .next && next build",
"start": "next start",
"lint": "npx eslint .",
"type-check": "tsc --noEmit",
"generate": "graphql-codegen --config codegen.ts",
"prepare": "husky",
"test": "jest --coverage",
"jest": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"sanitize-translations": "node scripts/sanitizeTranslations.js",
"crowdin:upload": "node scripts/load-env.js && crowdin upload sources --auto-update",
"crowdin:download": "node scripts/load-env.js && crowdin download && npm run sanitize-translations",
"trivy-high": "sh ./scripts/trivy-high.sh",
"trivy-med": "sh ./scripts/trivy-med.sh",
"trivy-all": "npm run trivy-high && npm run trivy-med"
},
"dependencies": {
"@apollo/client": "4.0.11",
"@apollo/client-integration-nextjs": "0.14.4",
"@dmptool/types": "3.1.2",
"@elastic/ecs-pino-format": "1.5.0",
"@fortawesome/fontawesome-svg-core": "6.6.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@fortawesome/react-fontawesome": "0.2.2",
"@react-aria/toast": "3.0.9",
"@react-stately/toast": "3.1.2",
"classnames": "2.5.1",
"deepmerge": "4.3.1",
"dompurify": "3.3.2",
"graphql": "16.12.0",
"html-react-parser": "5.2.17",
"husky": "9.1.7",
"jose": "6.1.3",
"jsonwebtoken": "9.0.3",
"loglevel": "1.9.2",
"next": "16.1.6",
"next-intl": "4.8.3",
"node-fetch": "3.3.2",
"pino": "9.14.0",
"prop-types": "15.8.1",
"react": "19.2.4",
"react-aria-components": "1.14.0",
"react-dom": "19.2.4",
"rxjs": "7.8.2",
"sanitize-html": "2.17.1",
"tinymce": "7.9.2",
"zod": "4.3.6"
},
"devDependencies": {
"@graphql-codegen/cli": "6.1.2",
"@graphql-codegen/client-preset": "5.2.3",
"@graphql-codegen/typed-document-node": "6.1.6",
"@graphql-codegen/typescript": "5.0.8",
"@graphql-codegen/typescript-operations": "5.0.8",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.5.2",
"@types/domexception": "4.0.3",
"@types/jest": "29.5.14",
"@types/jest-axe": "3.5.9",
"@types/jsonwebtoken": "9.0.10",
"@types/next": "9.0.0",
"@types/node": "24.12.0",
"@types/pino": "7.0.5",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/sanitize-html": "2.16.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"brace-expansion": "2.0.2",
"cypress": "15.10.0",
"domexception": "4.0.0",
"dotenv": "16.6.1",
"eslint": "9.18.0",
"eslint-config-next": "16.1.6",
"eslint-plugin-unused-imports": "4.3.0",
"jest": "30.2.0",
"jest-axe": "10.0.0",
"jest-environment-jsdom": "30.2.0",
"prettier": "3.7.4",
"sass": "1.89.2",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"overrides": {
"minimatch": "10.2.4",
"@eslint/plugin-kit": "0.3.4",
"test-exclude": "7.0.2"
}
}