-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.97 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.97 KB
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
{
"name": "ads-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "3.14.1",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/inter": "5.2.8",
"@fontsource/mulish": "5.2.8",
"@fontsource/poppins": "5.2.7",
"@graphql-typed-document-node/core": "3.2.0",
"@jonkoops/matomo-tracker-react": "0.7.0",
"@mui/icons-material": "7.3.10",
"@mui/material": "7.3.10",
"@mui/x-data-grid": "8.28.2",
"@mui/x-date-pickers": "8.27.2",
"bignumber.js": "9.3.1",
"dayjs": "1.11.20",
"formik": "2.4.9",
"graphql": "16.13.2",
"highcharts": "12.5.0",
"highcharts-react-official": "3.2.3",
"immer": "11.1.4",
"lodash": "4.18.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-router-dom": "5.3.4",
"react-window": "2.2.7",
"swr": "2.4.1",
"yup": "1.7.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 --ignore-registry-errors",
"check:knip": "knip",
"check:lint": "eslint src",
"check": "pnpm run /^check:.*/",
"prepare": "husky",
"lint:fix": "eslint --fix src"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@graphql-codegen/cli": "6.2.1",
"@graphql-codegen/client-preset": "5.2.4",
"@graphql-codegen/introspection": "5.0.1",
"@graphql-eslint/eslint-plugin": "4.4.0",
"@parcel/watcher": "2.5.6",
"@types/lodash": "4.17.24",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-basic-ssl": "2.3.0",
"@vitejs/plugin-react": "5.2.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.0",
"husky": "9.1.7",
"knip": "6.4.0",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"prettier-plugin-organize-imports": "4.3.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"vite": "7.3.2",
"vite-plugin-checker": "0.12.0",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.4"
},
"engines": {
"node": ">=24",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=10"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.14.1",
"onFail": "download"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}