-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.26 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 4.26 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "web",
"version": "1.3.0",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"build": "next build",
"injectsourcemaps": "sentry-cli sourcemaps inject .next/",
"dev": "next dev",
"start": "yarn dev",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,css}' && eslint . --fix",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,css}'",
"create-translation-files": "node scripts/create-translation-files.js",
"delete-translation-files": "node scripts/delete-translation-files.js",
"jest": "jest --modulePaths=.",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"serve": "next start",
"test-ci": "tsc && cross-env NEXT_PUBLIC_API_BASE_URL=http://localhost:8888 CI=true TZ=UTC jest --runInBand --coverageReporters=\"cobertura\" --coverageReporters=\"lcov\" --reporters=\"default\" --reporters=\"jest-junit\" --coverage",
"test": "cross-env NEXT_PUBLIC_API_BASE_URL=http://localhost:8888 TZ=UTC jest",
"typecheck": "tsc --noEmit",
"knip": "knip"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@growthbook/growthbook": "^1.6.5",
"@growthbook/growthbook-react": "^1.6.5",
"@mui/icons-material": "^7.3.9",
"@mui/lab": "^7.0.0-beta.17",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"@mui/system": "^7.3.11",
"@mui/utils": "^7.3.7",
"@mui/x-date-pickers": "^8.27.2",
"@stripe/stripe-js": "^9.9.0",
"@sentry/nextjs": "^10.66.0",
"@sentry/react": "^10.62.0",
"@tanstack/query-async-storage-persister": "^5.101.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-devtools": "^5.101.2",
"@tanstack/react-query-persist-client": "^5.101.2",
"@toast-ui/editor": "^3.2.2",
"dayjs": "^1.11.21",
"frontmatter-markdown-loader": "^3.7.0",
"geojson": "^0.5.0",
"google-protobuf": "^3.21.4",
"grpc-web": "2.0.2",
"i18next": "^26.3.6",
"intersection-observer": "^0.12.2",
"lottie-react": "^2.4.1",
"luhn": "^2.4.1",
"maplibre-gl": "^5.24.0",
"markdown-it": "^14.2.0",
"next": "^15.5.7",
"next-i18next": "^15.4.3",
"prop-types": "^15.7.2",
"react": "19.2.6",
"react-dom": "^19.2.6",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.54.0",
"react-i18next": "^16.6.5",
"react-intersection-observer": "^10.1.0",
"react-lines-ellipsis": "^0.16.1",
"react-map-gl": "^8.1.1",
"react-phone-number-input": "^3.4.17",
"react-simple-maps": "^3.0.0",
"seamless-scroll-polyfill": "^2.1.8",
"temporal-polyfill": "^1.0.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@eslint/eslintrc": "3.3.6",
"@eslint/js": "9.39.5",
"@next/bundle-analyzer": "^16.2.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.0",
"@types/css-mediaquery": "^0.1.4",
"@types/geojson": "^7946.0.10",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^30.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.18.12",
"@types/react": "19.2.15",
"@types/react-dom": "^19.2.3",
"@types/react-gtm-module": "^2.0.4",
"@types/react-simple-maps": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"babel-jest": "^30.4.1",
"cross-env": "^10.1.0",
"css-mediaquery": "^0.1.2",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.7",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-junit": "^16.0.0",
"knip": "^6.27.0",
"msw": "^1.2.1",
"next-router-mock": "^1.0.5",
"prettier": "3.4.2",
"sentry-testkit": "^6.4.1",
"typescript": "^5.9.3",
"whatwg-fetch": "^3.6.20"
},
"resolutions": {
"@types/react": "^19.2.1",
"@types/react-dom": "^19.2.1"
},
"packageManager": "yarn@1.22.22",
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}