-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.18 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
{
"name": "kleckrelay-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint --ext src",
"lint:fix": "eslint --ext src --fix",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"typecheck": "tsc --noEmit",
"check": "yarn typecheck && yarn lint && yarn format"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/lab": "^5.0.0-alpha.103",
"@mui/material": "^5.10.9",
"@mui/x-date-pickers": "^6.0.1",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@tanstack/react-query": "^4.12.0",
"axios": "^1.1.2",
"axios-case-converter": "^0.11.1",
"camelcase-keys": "^8.0.2",
"crypto-js": "^4.2.0",
"date-fns": "^2.29.3",
"deep-equal": "^2.0.5",
"fast-hash-code": "^2.1.0",
"formik": "^2.2.9",
"i18next": "^22.0.4",
"i18next-browser-languagedetector": "^7.0.0",
"i18next-http-backend": "^2.0.0",
"i18next-localstorage-cache": "^1.1.1",
"immutability-helper": "^3.1.1",
"in-milliseconds": "^1.2.0",
"in-seconds": "^1.2.0",
"lodash": "^4.17.21",
"notistack": "^2.0.8",
"openpgp": "^5.10.1",
"react": "^18.2.0",
"react-country-flag": "^3.0.2",
"react-dom": "^18.2.0",
"react-i18next": "^12.0.0",
"react-icons": "^4.4.0",
"react-qr-code": "^2.0.11",
"react-router-dom": "^6.4.2",
"react-use": "^17.4.0",
"secure-random-password": "^0.2.3",
"sort-array": "^4.1.5",
"ua-parser-js": "^1.0.33",
"use-system-theme": "^0.1.1",
"yup": "^0.32.11",
"yup-locales": "^1.2.10"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.1",
"@types/crypto-js": "^4.1.1",
"@types/date-fns": "^2.6.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/openpgp": "^4.4.18",
"@types/react-dom": "^18.0.11",
"@types/react-icons": "^3.0.0",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "^5.3.3",
"@types/secure-random-password": "^0.2.1",
"@types/sort-array": "^4.1.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-i18n": "^1.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.6.4",
"vite": "^3.2.7",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-svgr": "^2.4.0"
},
"browserslist": [
"defaults",
"not op_mini all"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.test.ts?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}