-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
131 lines (131 loc) · 3.64 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "zerro",
"version": "1.5.23",
"private": true,
"type": "module",
"scripts": {
"start": "vite --port 3000",
"build": "tsc && vite build",
"preview": "vite preview --port 3000",
"tsc": "tsc --watch",
"test": "vitest",
"lint:css": "stylelint './src/**/*.js'"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"stylelint": {
"defaultSeverity": "warning",
"extends": [
"stylelint-config-recommended",
"stylelint-config-sass-guidelines",
"stylelint-config-styled-components"
],
"plugins": [
"stylelint-order",
"stylelint-config-rational-order/plugin"
],
"rules": {
"order/properties-order": [],
"order/properties-alphabetical-order": null,
"plugin/rational-order": true
}
},
"browserslist": [
"defaults"
],
"resolutions": {
"@types/react": "18.3.18"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mdx-js/react": "^3.1.0",
"@mui/base": "^5.0.0-dev.20240529-082515-213b5e33ab",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@mui/system": "^5.16.14",
"@mui/x-date-pickers": "^6.20.2",
"@reduxjs/toolkit": "^2.6.1",
"@sentry/browser": "^8.55.0",
"browserslist": "^4.24.4",
"comlink": "^4.4.2",
"convert-layout": "^0.11.1",
"date-fns": "^2.30.0",
"formik": "^2.4.6",
"history": "^4.10.1",
"i18next": "^24.2.2",
"idb": "^8.0.2",
"json2mq": "^0.2.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"qrcode.react": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1",
"react-helmet": "^6.1.0",
"react-hotkeys-hook": "^4.6.1",
"react-i18next": "^14.1.3",
"react-redux": "^9.2.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-transition-group": "^4.4.5",
"react-virtualized-auto-sizer": "^1.0.25",
"react-window": "^1.8.11",
"react-wrap-balancer": "^1.1.1",
"recharts": "^2.15.1",
"use-local-storage-state": "^19.5.0",
"uuid": "^9.0.1",
"workbox-build": "^7.3.0",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@emotion/eslint-plugin": "^11.12.0",
"@mdx-js/rollup": "^3.1.0",
"@types/convert-layout": "^0.5.3",
"@types/json2mq": "^0.2.2",
"@types/lodash": "^4.17.16",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.10",
"@types/qrcode.react": "^1.0.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-helmet": "^6.1.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-config-react-app": "^7.0.1",
"postcss": "^8.5.3",
"sass": "^1.85.1",
"stylelint": "^16.15.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^6.0.4",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-scss": "^6.11.1",
"typescript": "^5.8.2",
"vite": "^6.2.1",
"vite-plugin-pwa": "^0.21.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.9"
},
"packageManager": "[email protected]"
}