forked from neurobagel/query-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "react-query-tool",
"private": true,
"version": "v0.8.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint:check": "eslint . --ext 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 .",
"prepare": "husky"
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^5.16.13",
"@mui/material": "^5.16.7",
"axios": "^1.7.7",
"eslint-plugin-tsdoc": "^0.4.0",
"jwt-decode": "^4.0.0",
"notistack": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-icons": "^5.3.0",
"react-router-dom": "^7.1.1",
"react-simple-chatbot": "^0.6.1",
"styled-components": "^4.4.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@kesills/eslint-config-airbnb-typescript": "^20.0.0",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.20",
"cypress": "^13.16.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"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.16",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"vite": "^5.4.10",
"vitest": "^2.0.2"
}
}