-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathpackage.json
88 lines (88 loc) · 2.81 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
{
"name": "{{project_name}}-frontend",
"version": "0.0.1",
"private": true,
"description": "{{project_name}} frontend.",
"engines": {
"node": ">=20 <21"
},
"browserslist": "> 0.25%, not dead",
"main": "frontend/js/index.tsx",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:update": "npm test -- --u",
"dev": "webpack serve --mode=development --hot",
"build": "NODE_ENV=production tsc && webpack --progress --bail --mode=production",
"lint": "eslint frontend --fix",
"tsc": "tsc -p ./tsconfig.json --noEmit",
"coverage": "jest --coverage",
"openapi-ts": "openapi-ts"
},
"dependencies": {
"@hey-api/openapi-ts": "^0.45.0",
"@sentry/browser": "~8.0.0",
"@sentry/react": "~8.0.0",
"axios": "~1.6.8",
"bootstrap": "~5.3.3",
"classnames": "~2.5.1",
"cookie": "~0.6.0",
"lodash": "~4.17.21",
"marked": "~12.0.2",
"react": "~18.3.1",
"react-bootstrap": "~2.10.2",
"react-dom": "~18.3.1",
"react-router": "~6.23.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.13",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.6",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "~6.4.5",
"@testing-library/react": "~15.0.7",
"@testing-library/user-event": "~14.5.2",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ajv": "~8.13.0",
"circular-dependency-plugin": "~5.2.2",
"css-loader": "~7.1.1",
"eslint": "~8.57.0",
"eslint-config-vinta": "github:vintasoftware/eslint-config-vinta#9dd2803f4864a2e9942c636f78b367b4d5a56c67",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "~0.13.8",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jest": "~27.9.0",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.34.1",
"eslint-plugin-react-hooks": "~4.6.2",
"eslint-plugin-sonarjs": "~0.23.0",
"eslint-plugin-unicorn": "~49.0.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "~2.9.0",
"postcss": "~8.4.38",
"postcss-loader": "~8.1.1",
"prettier": "~3.2.5",
"react-refresh": "^0.14.2",
"sass": "~1.77.1",
"sass-loader": "~14.2.1",
"style-loader": "~4.0.0",
"swc-loader": "^0.2.6",
"typescript": "^5.4.5",
"webpack": "~5.91.0",
"webpack-bundle-tracker": "~3.1.0",
"webpack-cli": "~5.1.4",
"webpack-dev-server": "~5.0.4",
"whatwg-fetch": "~3.6.20"
}
}