-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "metadata-submitter-frontend",
"version": "0.13.0",
"type": "module",
"private": true,
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.0",
"@emotion/babel-plugin": "^11.12.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/codemod": "^6.0.0",
"@mui/icons-material": "^6.0.0",
"@mui/lab": "^6.0.0-beta.11",
"@mui/material": "^6.0.0",
"@mui/system": "^6.0.0",
"@mui/x-data-grid": "^7.15.0",
"@reduxjs/toolkit": "^2.2.7",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.3.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"ajv-i18n": "^4.2.0",
"apisauce": "^3.0.1",
"dotenv": "^16.4.5",
"i18next": "^24.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^12.1.0",
"react-hook-form": "^7.53.0",
"react-i18next": "^14.1.3",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.1",
"react-transition-group": "^4.4.2",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest watch",
"test:no-watch": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"format": "prettier --write \"**/*.+(json|yml|yaml|css|md)\"",
"format:check": "prettier --check \"**/*.+(json|yml|yaml|css|md)\"",
"concurrently": "concurrently",
"tsc": "tsc --pretty",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.46.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.0.4",
"@types/lodash": "^4.17.7",
"@types/node": "^20.16.2",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"concurrently": "^9.0.0",
"cypress": "^13.14.1",
"cypress-file-upload": "^5.0.8",
"eslint": "^9.11.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.9.0",
"husky": "^9.0.0",
"jsdom": "^25.0.0",
"mongodb": "^6.8.0",
"msw": "^2.4.1",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"snapshot-diff": "^0.10.0",
"typescript": "^5.0.2",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run concurrently -- \"pnpm:lint:check\" \"pnpm:format:check\" \"pnpm:tsc\" \"pnpm:test:no-watch\" "
}
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1"
}
}
}