-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.63 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.63 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
{
"name": "{{project_name}}-frontend",
"version": "0.0.1",
"private": true,
"description": "{{project_name}} frontend.",
"engines": {
"node": ">=22 <23"
},
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
"browserslist": "> 0.25%, not dead",
"main": "frontend/js/index.tsx",
"scripts": {
"test": "jest",
"test:watch": "pnpm test -- --watch",
"test:update": "pnpm test -- --u",
"dev": "webpack serve --mode=development --hot",
"build": "NODE_ENV=production tsc && webpack --progress --bail --mode=production",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,md}\"",
"tsc": "tsc -p ./tsconfig.json --noEmit",
"coverage": "jest --coverage",
"openapi-ts": "openapi-ts"
},
"dependencies": {
"@sentry-internal/browser-utils": "^10.20.0",
"@sentry-internal/feedback": "^10.20.0",
"@sentry-internal/replay": "^10.20.0",
"@sentry-internal/replay-canvas": "^10.20.0",
"@sentry/browser": "~10.19.0",
"@sentry/core": "^10.20.0",
"@sentry/react": "~10.19.0",
"@sentry/utils": "^8.55.0",
"axios": "~1.12.2",
"classnames": "~2.5.1",
"cookie": "^1.0.2",
"hoist-non-react-statics": "^3.3.2",
"lodash": "~4.17.21",
"marked": "~16.4.1",
"react": "~19.2.0",
"react-dom": "~19.2.0",
"react-is": "^19.2.0",
"react-router": "~7.9.4",
"scheduler": "^0.27.0",
"set-cookie-parser": "^2.7.1"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.85.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "~16.3.0",
"@testing-library/user-event": "~14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.11",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"ajv": "~8.17.1",
"anser": "^2.3.2",
"ansi-html": "^0.0.9",
"ansi-html-community": "^0.0.8",
"base64-js": "^1.5.1",
"buffer": "^6.0.3",
"circular-dependency-plugin": "~5.2.2",
"core-js-pure": "^3.46.0",
"css-loader": "~7.1.2",
"error-stack-parser": "^2.1.4",
"eslint": "~9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-import-resolver-webpack": "~0.13.10",
"eslint-plugin-import": "~2.32.0",
"eslint-plugin-jest": "~29.0.1",
"eslint-plugin-jsx-a11y": "~6.10.2",
"eslint-plugin-promise": "~7.2.1",
"eslint-plugin-react": "~7.37.5",
"eslint-plugin-react-hooks": "~7.0.0",
"eslint-plugin-sonarjs": "~3.0.5",
"eslint-plugin-unicorn": "~61.0.2",
"html-entities": "^2.6.0",
"identity-obj-proxy": "~3.0.0",
"ieee754": "^1.2.1",
"jest": "~30.2.0",
"jest-environment-jsdom": "~30.2.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "~2.9.4",
"node-polyfill-webpack-plugin": "^4.1.0",
"postcss": "~8.5.6",
"postcss-loader": "~8.2.0",
"prettier": "~3.6.2",
"react-refresh": "^0.18.0",
"stackframe": "^1.3.4",
"style-loader": "~4.0.0",
"swc-loader": "^0.2.6",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"webpack": "~5.102.1",
"webpack-bundle-tracker": "~3.2.1",
"webpack-cli": "~6.0.1",
"webpack-dev-server": "~5.2.2",
"whatwg-fetch": "~3.6.20"
}
}