-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.72 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.72 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": "modelseed-ui",
"version": "3.0.0",
"private": true,
"scripts": {
"predev": "node scripts/sync-version-from-env.mjs",
"dev": "next dev",
"prebuild": "node scripts/sync-version-from-env.mjs && node scripts/write-build-date.mjs",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:api": "tsx scripts/api-test.mjs",
"test:api:full": "node scripts/comprehensive-api-test.mjs",
"test:poplar-smoke": "node scripts/poplar-smoke.mjs"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"@mui/material-nextjs": "^7.3.8",
"@mui/x-data-grid": "^8.27.3",
"@rdkit/rdkit": "2025.3.4-1.0.0",
"@tanstack/react-query": "^5.90.21",
"next": "^16.2.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.1",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"happy-dom": "^20.8.4",
"tsx": "^4.21.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.1"
},
"overrides": {
"postcss": "^8.5.12"
}
}