-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.57 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.57 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "sgex-workbench",
"version": "1.0.0",
"description": "SGEX Workbench - WHO SMART Guidelines Exchange collaborative editor",
"private": true,
"homepage": "/sgex/",
"repository": {
"type": "git",
"url": "https://github.com/litlfred/sgex.git"
},
"dependencies": {
"@octokit/rest": "^22.0.0",
"@sgex/dak-core": "file:packages/dak-core",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@uiw/react-md-editor": "^4.0.8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bpmn-js": "^18.7.0",
"bpmn-moddle": "^9.0.3",
"dompurify": "^3.3.0",
"html2canvas": "^1.4.1",
"i18next": "^25.6.0",
"i18next-browser-languagedetector": "^8.2.0",
"node-fetch": "^3.3.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.4",
"react-scripts": "^5.0.1",
"react-syntax-highlighter": "^15.6.6",
"rehype-raw": "^7.0.0",
"web-vitals": "^5.1.0"
},
"scripts": {
"configure:repo": "node scripts/configure-repository.js",
"start": "npm run configure:repo && craco start",
"build": "npm run configure:repo && craco build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "npm run build && cd build && python3 -m http.server 3000",
"check-framework-compliance": "node scripts/check-framework-compliance.js",
"verify-404": "node scripts/verify-404.js",
"build:verify": "npm run build && npm run verify-404",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:a11y": "eslint src --ext .js,.jsx,.ts,.tsx --format=compact | grep jsx-a11y || echo 'No accessibility issues found!'",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"generate-schemas": "npm run generate-schemas:typescript-json-schema && npm run generate-schemas:ts-json-schema-generator",
"generate-schemas:typescript-json-schema": "typescript-json-schema tsconfig.json \"*\" --out public/docs/schemas/generated-schemas-tjs.json --include src/types/**/*.ts",
"generate-schemas:ts-json-schema-generator": "ts-json-schema-generator --path src/types/**/*.ts --type \"*\" --out public/docs/schemas/generated-schemas-tsjsg.json",
"prebuild": "echo 'Skipping prebuild due to TypeScript errors'",
"build-mcp": "cd services/dak-faq-mcp && npm install && npm run build",
"run-mcp": "cd services/dak-faq-mcp && npm start",
"run-mcp-server": "cd services/dak-faq-mcp && npm run start-mcp",
"test-mcp": "cd services/dak-faq-mcp && npm test",
"generate-dak-faq-docs": "npm run build-mcp && node scripts/generate-dak-faq-docs.js",
"generate-service-table": "node scripts/generate-service-table.js",
"compliance:profile": "node src/tests/compliance/profileCreationCompliance.js",
"compliance:all": "npm run compliance:profile",
"test:compliance": "npm test -- --testPathPattern=compliance"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@octokit|universal-user-agent|before-after-hook|@babel|babel-runtime|@ungap|jsdom|@uiw|react-router|react-router-dom)/)"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
"^react-router-dom$": "<rootDir>/node_modules/react-router-dom/dist/index.js"
}
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"nth-check": "2.1.1",
"postcss": "8.5.6",
"webpack-dev-server": "5.2.1",
"prismjs": "1.30.0"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@testing-library/dom": "^10.4.1",
"@types/ajv": "^1.0.4",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.5.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.0",
"buffer": "^6.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"events": "^3.3.0",
"http-proxy-middleware": "^3.0.5",
"identity-obj-proxy": "^3.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^27.0.1",
"process": "^0.11.10",
"ts-json-schema-generator": "^2.4.0",
"typescript": "^5.9.2",
"typescript-json-schema": "^0.65.1"
}
}