forked from brave/ads-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.87 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.87 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
{
"name": "ads-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "3.8.10",
"@date-io/moment": "2.17.0",
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@fontsource/mulish": "5.0.16",
"@fontsource/poppins": "5.0.8",
"@jonkoops/matomo-tracker-react": "0.7.0",
"@mui/icons-material": "5.15.7",
"@mui/lab": "5.0.0-alpha.163",
"@mui/material": "5.15.7",
"@mui/x-data-grid": "6.19.3",
"@mui/x-date-pickers": "5.0.20",
"axios": "1.6.7",
"base64url": "3.0.1",
"bignumber.js": "9.1.2",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.0",
"formik": "2.4.5",
"graphql": "16.8.1",
"highcharts": "11.3.0",
"highcharts-react-official": "3.2.1",
"immer": "10.0.3",
"lodash": "4.17.21",
"moment": "2.30.1",
"npm-audit-resolver": "3.0.0-RC.0",
"papaparse": "5.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "5.3.4",
"react-table": "7.8.0",
"tweetnacl": "1.0.3",
"yup": "1.3.3"
},
"scripts": {
"start": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=4096' vite build",
"preview": "vite preview --port 8080",
"test": "vitest",
"codegen": "graphql-codegen",
"format": "prettier --write .",
"check:format": "prettier --check .",
"tsc": "tsc",
"prepare": "husky install",
"check:audit": "check-audit",
"audit:resolve": "resolve-audit",
"check:lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/near-operation-file-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-apollo": "4.1.0",
"@graphql-codegen/visitor-plugin-common": "4.0.1",
"@types/chart.js": "2.9.41",
"@types/classnames": "2.3.0",
"@types/jest": "29.5.12",
"@types/jwt-decode": "2.2.1",
"@types/lodash": "4.14.202",
"@types/papaparse": "5.3.14",
"@types/react": "18.2.51",
"@types/react-dom": "18.2.18",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vitejs/plugin-basic-ssl": "1.1.0",
"@vitejs/plugin-react": "4.2.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.33.2",
"husky": "9.0.10",
"prettier": "3.2.4",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-plugin-checker": "0.6.4",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.2.2"
},
"overrides": {
"semver": "7.5.4",
"optionator": "0.9.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
}
}