forked from vllm-project/guidellm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.95 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.95 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
{
"name": "guidellm",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev src/ui",
"build": "next build src/ui",
"serve": "serve src/ui/out -c ../serve.json --cors",
"lint": "next lint --fix src/ui",
"type-check": "tsc -p src/ui/tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit && tsc -p tsconfig.cypress.json --noEmit",
"format": "prettier --write .",
"prepare": "husky",
"test": "jest --config jest.config.cjs tests/ui",
"test:watch": "jest --watch tests/ui",
"test:unit": "jest --config jest.config.cjs tests/ui/unit",
"test:integration": "jest --config jest.config.cjs tests/ui/integration",
"test:e2e": "cypress run --headless",
"coverage": "jest --config jest.config.cjs --coverage tests/ui",
"coverage:badge": "jest-coverage-badges --input coverage/coverage-summary.json --output coverage/.coverage"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^5.11.7",
"@mui/material-nextjs": "^5.16.6",
"@nivo/bar": "^0.88.0",
"@nivo/core": "^0.88.0",
"@nivo/line": "^0.88.0",
"@nivo/scales": "^0.88.0",
"@nivo/tooltip": "^0.88.0",
"@reduxjs/toolkit": "^2.2.7",
"filesize": "^10.1.6",
"next": "13.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-material-ui-carousel": "^3.4.2",
"react-redux": "^9.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@mui/types": "^7.2.14",
"@next/eslint-plugin-next": "^13.4.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^22",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.9",
"cross-fetch": "^4.1.0",
"cypress": "^13.13.3",
"eslint": "^8.0.0",
"eslint-config-next": "13.4.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"jest-environment-jsdom": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"jest-transform-stub": "^2.0.0",
"prettier": "^3.5.3",
"serve": "^14.2.4",
"sharp": "^0.32.0",
"typescript": "^5",
"typescript-eslint": "^8.34.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "eslint --cache --fix",
"*.jsx": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix"
},
"engines": {
"node": ">=22"
}
}