-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
125 lines (125 loc) · 3.6 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
{
"name": "ads-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "3.11.8",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource/inter": "5.1.0",
"@fontsource/mulish": "5.1.0",
"@fontsource/poppins": "5.1.0",
"@graphql-typed-document-node/core": "3.2.0",
"@jonkoops/matomo-tracker-react": "0.7.0",
"@lingui/conf": "4.13.0",
"@lingui/core": "4.13.0",
"@lingui/detect-locale": "4.13.0",
"@lingui/format-po": "4.13.0",
"@lingui/macro": "4.13.0",
"@lingui/react": "4.13.0",
"@mui/icons-material": "6.1.5",
"@mui/lab": "6.0.0-beta.13",
"@mui/material": "6.1.5",
"@mui/x-data-grid": "7.22.0",
"@mui/x-date-pickers": "7.22.0",
"bignumber.js": "9.1.2",
"dayjs": "1.11.13",
"formik": "2.4.6",
"graphql": "16.9.0",
"highcharts": "11.4.8",
"highcharts-react-official": "3.2.1",
"immer": "10.1.1",
"lodash": "4.17.21",
"papaparse": "5.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "5.3.4",
"react-virtualized-auto-sizer": "1.0.24",
"react-window": "1.8.10",
"swr": "2.2.5",
"tweetnacl": "1.0.3",
"yup": "1.4.0"
},
"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": "run-p -l check:*",
"prepare": "husky",
"lint:fix": "eslint --fix src",
"extract": "lingui extract"
},
"devDependencies": {
"@eslint/js": "8.57.1",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.4.0",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-eslint/eslint-plugin": "3.20.1",
"@lingui/cli": "4.13.0",
"@lingui/vite-plugin": "4.13.0",
"@parcel/watcher": "2.4.1",
"@types/lodash": "4.17.12",
"@types/papaparse": "5.3.15",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "5.3.3",
"@types/react-window": "1.8.8",
"@vitejs/plugin-basic-ssl": "1.1.0",
"@vitejs/plugin-react": "4.3.3",
"babel-plugin-macros": "3.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-lingui": "0.6.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "9.1.6",
"knip": "5.34.0",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0",
"vite": "5.4.10",
"vite-plugin-checker": "0.8.0",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.3"
},
"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.17.1",
"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.22.4"
}
},
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}