-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.76 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.76 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
90
91
92
93
94
95
96
97
{
"name": "datagateway-common",
"version": "2.2.0",
"private": true,
"type": "module",
"files": [
"lib"
],
"main": "./lib/main.js",
"dependencies": {
"@date-io/date-fns": "2.17.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/x-date-pickers": "6.11.2",
"@tanstack/react-query": "4.40.0",
"@tanstack/react-query-devtools": "4.40.0",
"@types/lodash.debounce": "4.0.6",
"@vitejs/plugin-react": "4.6.0",
"axios": "1.11.0",
"browserslist": "4.25.0",
"browserslist-to-esbuild": "2.1.1",
"date-fns": "2.30.0",
"hex-to-rgba": "2.0.1",
"history": "4.10.1",
"i18next": "22.0.3",
"lodash.debounce": "4.0.8",
"loglevel": "1.9.1",
"prettier": "2.8.0",
"react-draggable": "4.4.5",
"react-i18next": "12.3.1",
"react-redux": "8.1.3",
"react-virtualized": "9.22.5",
"redux": "4.2.0",
"redux-mock-store": "1.5.4",
"redux-thunk": "2.4.1",
"tslib": "2.8.1",
"typescript": "5.3.3",
"vite": "5.4.19"
},
"peerDependencies": {
"@mui/icons-material": ">= 5.5.0 < 6",
"@mui/material": ">= 5.5.0 < 6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": ">= 5.2.0 < 6"
},
"devDependencies": {
"@babel/eslint-parser": "7.27.5",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.6.1",
"@types/node": "20.19.0",
"@types/react": "18.0.33",
"@types/react-router-dom": "5.3.3",
"@types/react-virtualized": "9.22.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-v8": "3.2.3",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.5",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-prettier": "4.2.1",
"jsdom": "26.1.0",
"lint-staged": "13.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "5.3.4",
"react-test-renderer": "17.0.2",
"vitest": "3.2.3",
"vitest-fail-on-console": "0.7.1"
},
"scripts": {
"dev": "vite --open",
"build": "vite build",
"test": "vitest --coverage",
"postinstall": "yarn tsc",
"lint:js": "eslint --ext=tsx --ext=ts --ext=js --ext=jsx --fix ./src",
"tsc": "tsc -p tsconfig.lib.json",
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{tsx,ts,js,jsx,json}": [
"eslint --max-warnings=0 --ext=tsx --ext=ts --ext=js --ext=jsx --fix",
"prettier --write"
],
"cypress/**/*.{tsx,ts,js,jsx,json}": [
"eslint --max-warnings=0 --ext=tsx --ext=ts --ext=js --ext=jsx --fix",
"prettier --write"
]
},
"browserslist": [
"defaults"
]
}