-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.37 KB
/
package.json
File metadata and controls
94 lines (94 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
89
90
91
92
93
94
{
"name": "duos-ui",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"scripts": {
"analyze": "VISUALIZER_PLUGIN=true vite build",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"lint:staged": "eslint $(git diff --name-only --cached | xargs)",
"cypress:open": "CYPRESS_ADMIN=$(cat cypress/fixtures/duos-automation-admin.json) CYPRESS_CHAIR=$(cat cypress/fixtures/duos-automation-chair.json) CYPRESS_MEMBER=$(cat cypress/fixtures/duos-automation-member.json) CYPRESS_RESEARCHER=$(cat cypress/fixtures/duos-automation-researcher.json) CYPRESS_SIGNING_OFFICIAL=$(cat cypress/fixtures/duos-automation-signing-official.json) cypress open",
"cypress:open:component": "cypress open --component",
"cypress:run": "CYPRESS_ADMIN=$(cat cypress/fixtures/duos-automation-admin.json) CYPRESS_CHAIR=$(cat cypress/fixtures/duos-automation-chair.json) CYPRESS_MEMBER=$(cat cypress/fixtures/duos-automation-member.json) CYPRESS_RESEARCHER=$(cat cypress/fixtures/duos-automation-researcher.json) CYPRESS_SIGNING_OFFICIAL=$(cat cypress/fixtures/duos-automation-signing-official.json) cypress run",
"cypress:run:component": "cypress run --component",
"cypress:verify": "cypress verify"
},
"dependencies": {
"@databiosphere/bard-client": "0.1.0",
"@mui/icons-material": "9.0.1",
"@mui/material": "9.0.1",
"@mui/system": "9.0.1",
"@mui/x-data-grid": "9.4.0",
"@mui/x-date-pickers": "9.2.0",
"@tanstack/react-query": "5.101.0",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"dayjs": "1.11.21",
"dompurify": "3.4.8",
"oidc-client-ts": "3.5.0",
"query-string": "9.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "15.0.0",
"react-google-charts": "5.2.1",
"react-markdown": "10.1.0",
"react-modal": "3.16.3",
"react-paginating": "1.4.0",
"react-router-dom": "7.17.0",
"react-select": "5.10.2",
"react-tooltip": "6.0.7",
"stackdriver-errors-js": "0.12.0",
"tss-react": "4.9.21",
"uuid": "14.0.0"
},
"devDependencies": {
"@emotion/styled": "11.14.1",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.13.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-modal": "3.16.3",
"@vitejs/plugin-react": "6.0.2",
"@vitest/coverage-v8": "4.1.8",
"cypress": "15.16.0",
"cypress-vite": "1.10.0",
"eslint": "10.4.1",
"eslint-plugin-cypress": "6.4.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"globals": "17.6.0",
"google-auth-library": "10.7.0",
"history": "5.3.0",
"jiti": "2.7.0",
"jsdom": "29.1.1",
"prop-types": "15.8.1",
"rollup-plugin-visualizer": "7.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vite": "8.0.16",
"vitest": "4.1.8"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=24.11.1 <25"
},
"type": "module"
}