-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"name": "dis-data-admin-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"audit": "npx auditjs ossi --whitelist ./audit-allowlist.json --quiet -u $OSSINDEX_USERNAME -p $OSSINDEX_TOKEN",
"lint": "eslint .",
"dev": "next dev -p 29400",
"build": "next build",
"start": "next start -p 29400",
"test": "jest",
"test:watch": "jest --watch",
"test:component": "playwright test --config=playwright.config.mjs"
},
"dependencies": {
"@hapi/address": "^5.1.1",
"author-design-system-react": "^1.0.65",
"dis-authorisation-client-js": "^1.0.1",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"next": "^16.2.6",
"react": "19.2.5",
"react-dom": "19.2.5",
"resumablejs": "^1.1.0",
"slugify": "^1.6.6",
"typescript": "^5.6.2",
"uuid": "^14.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@next/eslint-plugin-next": "^15.1.5",
"@playwright/test": "^1.59.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"auditjs": "^4.2.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.0.10",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-testing-library": "^7.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fixed-jsdom": "^0.0.10",
"ts-node": "^10.9.2"
},
"overrides": {
"author-design-system-react": {
"react": "19.2.5",
"react-router": "6.30.3",
"@remix-run/router": "1.23.2"
},
"next": {
"postcss": "8.5.12"
}
}
}