-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
126 lines (126 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
{
"name": "ads-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "3.12.8",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@fontsource/inter": "5.1.1",
"@fontsource/mulish": "5.1.1",
"@fontsource/poppins": "5.1.1",
"@graphql-typed-document-node/core": "3.2.0",
"@jonkoops/matomo-tracker-react": "0.7.0",
"@lingui/conf": "4.14.1",
"@lingui/core": "4.14.1",
"@lingui/detect-locale": "4.14.1",
"@lingui/format-po": "4.14.1",
"@lingui/macro": "4.14.1",
"@lingui/react": "4.14.1",
"@mui/icons-material": "6.4.1",
"@mui/lab": "6.0.0-beta.24",
"@mui/material": "6.4.1",
"@mui/x-data-grid": "7.24.1",
"@mui/x-date-pickers": "7.24.1",
"bignumber.js": "9.1.2",
"dayjs": "1.11.13",
"formik": "2.4.6",
"graphql": "16.10.0",
"highcharts": "12.1.2",
"highcharts-react-official": "3.2.1",
"immer": "10.1.1",
"lodash": "4.17.21",
"papaparse": "5.5.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "5.3.4",
"react-virtualized-auto-sizer": "1.0.25",
"react-window": "1.8.11",
"swr": "2.3.0",
"tweetnacl": "1.0.3",
"yup": "1.6.1"
},
"scripts": {
"start": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=4096' vite build",
"preview": "vite preview --port 8080",
"test": "vitest",
"codegen": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch",
"format": "prettier --write .",
"check:compile": "tsc",
"check:format": "prettier --check .",
"check:audit": "pnpm audit",
"check:knip": "knip",
"check:lint": "eslint src",
"check": "pnpm run /^check:.*/",
"prepare": "husky",
"lint:fix": "eslint --fix src",
"extract": "lingui extract"
},
"devDependencies": {
"@eslint/js": "8.57.1",
"@graphql-codegen/cli": "5.0.4",
"@graphql-codegen/client-preset": "4.6.0",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-eslint/eslint-plugin": "4.3.0",
"@lingui/cli": "4.14.1",
"@lingui/vite-plugin": "4.14.1",
"@parcel/watcher": "2.5.1",
"@types/lodash": "4.17.15",
"@types/papaparse": "5.3.15",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-router-dom": "5.3.3",
"@types/react-window": "1.8.8",
"@vitejs/plugin-basic-ssl": "1.2.0",
"@vitejs/plugin-react": "4.3.4",
"babel-plugin-macros": "3.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-lingui": "0.9.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"husky": "9.1.7",
"knip": "5.43.6",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vite": "6.0.11",
"vite-plugin-checker": "0.8.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5"
},
"engines": {
"node": ">=20",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=9"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"pnpm": {
"overrides": {
"ws@>=8.0.0 <8.17.1": "8.18.0",
"micromatch@<4.0.8": "4.0.8",
"dset@<3.1.4": "3.1.4",
"path-to-regexp@>=0.2.0 <1.9.0": "1.9.0",
"rollup@>=4.0.0 <4.22.4": "4.34.2",
"cross-spawn@>=7.0.0 <7.0.5": "7.0.6",
"nanoid@<3.3.8": "3.3.8"
}
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}