-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.26 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
{
"name": "pearl",
"version": "2.2.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/montserrat": "^5.0.16",
"@maverick-js/signals": "^5.11.4",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/styles": "^5.15.10",
"@mui/x-date-pickers": "^6.18.6",
"date-fns": "^2.30.0",
"dexie": "^3.2.1",
"dexie-export-import": "^1.0.3",
"dexie-react-hooks": "^1.1.1",
"keycloak-js": "^10.0.2",
"postcss": "8.4.24",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-router-dom": "^6.21.0",
"react-swipeable-views": "^0.14.0",
"zod": "^3.23.8"
},
"scripts": {
"dev": "vite",
"build": "vite build && copy-and-watch configuration/configuration.json build",
"preview": "vite preview",
"format": "prettier --write .",
"test": "vitest",
"lint:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,html,json}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx}\"",
"lint": "prettier -l \"**/*.{js,jsx,ts,tsx,css,scss,html,json}\" && eslint \"src/**/*.{js,ts,jsx,tsx}\""
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto",
"arrowParens": "avoid"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@originjs/vite-plugin-federation": "^1.2.1",
"@playwright/test": "^1.47.2",
"@types/node": "^22.7.5",
"@types/react": "^18.2.46",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "2.1.2",
"copy-and-watch": "^0.1.4",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"jsdom": "^23.0.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vite": "^4.2.1",
"vite-plugin-pwa": "^0.19.2",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^2.1.2"
},
"volta": {
"node": "20.10.0"
}
}