generated from neurobagel/react-bagel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.42 KB
/
package.json
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
{
"name": "ui",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint:check": "eslint **/*.{ts,tsx} --report-unused-disable-directives --max-warnings=0",
"lint:fix": "eslint --fix **/*.{ts,tsx}",
"preview": "vite preview",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "cypress run --e2e",
"test:component": "cypress run --component",
"test:unit": "vitest --run --coverage",
"typecheck": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"axios": "^1.7.7",
"cypress-file-upload": "^5.0.8",
"notistack": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-window": "^1.8.10",
"zustand": "^5.0.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.7",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@kesills/eslint-config-airbnb-typescript": "^20.0.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.2",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.2",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-tsdoc": "^0.3.0",
"global-jsdom": "^25.0.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"nyc": "^17.1.0",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-istanbul": "^6.0.0",
"vitest": "^2.1.3"
}
}