-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.23 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
{
"name": "i24-daq-ui",
"private": true,
"version": "0.0.11",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"tscheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.14.0",
"@base-ui/react": "^1.2.0",
"@diamondlightsource/cs-web-lib": "^0.9.14",
"@diamondlightsource/sci-react-ui": "^0.3.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"@types/react-redux": "^7.1.34",
"@typescript-eslint/parser": "^8.56.1",
"buffer": "^6.0.3",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-query": "^3.39.3",
"react-redux": "^7.2.9",
"react-router-dom": "^6.30.3",
"stream": "^0.0.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.19.13",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.56.1",
"vite": "^5.4.21",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"ajv": "^6.12.6",
"esbuild@<=0.24.2": ">=0.25.0",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7"
}
},
"imports": {
"#/*": "./src/*.ts"
}
}