-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 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
{
"name": "frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "java scripts/CpEnv.java .env.dev .env && next dev --turbopack",
"build": "next build",
"build:dev": "cp .env.dev .env && next build",
"build:prod": "cp .env.prod .env && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test-ui": "vitest --ui --coverage",
"coverage": "cp .env.dev .env && vitest run --coverage",
"vitest-preview": "vitest-preview",
"local-e2e": "playwright test",
"tc-e2e": "playwright test -c ./playwright.config.testcontainers.ts"
},
"dependencies": {
"@next/env": "15.1.3",
"@types/node": "22.10.2",
"autoprefixer": "10.4.20",
"axios": "^1.13.2",
"axios-mock-adapter": "^2.1.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"dotenv": "^16.6.1",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"formik": "^2.4.9",
"jest": "^29.7.0",
"next": "^16.1.5",
"next-router-mock": "^0.9.13",
"postcss": "^8.5.6",
"react": "19.0.0",
"react-bootstrap": "^2.10.10",
"react-dom": "19.0.0",
"react-toastify": "^11.0.5",
"rxjs": "^7.8.2",
"sass": "^1.96.0",
"typescript": "5.7.2",
"use-file-picker": "^2.1.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest-preview": "^0.0.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "19.0.2",
"@types/react-bootstrap": "^1.1.0",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"jsdom": "^25.0.1",
"testcontainers": "^10.28.0",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"express@<4.19.2": "^4.19.2",
"postcss@<8.4.31": "^8.4.31",
"lodash@<4.17.21": "^4.17.21",
"jsonwebtoken@<9.0.0": "^9.0.0",
"ws": "^6.2.2",
"ajv": "^6.12.3",
"qs": "6.5.3",
"moment": "^2.29.4",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"esbuild@<=0.24.2": ">=0.25.0",
"vite@<=4.5.5": ">=4.5.6",
"vite@<4.5.10": ">=4.5.10",
"next@>=15.0.0 <15.2.3": ">=15.2.3",
"vite@<4.5.11": ">=4.5.11",
"vite@<4.5.12": ">=4.5.12",
"vite@<4.5.13": ">=4.5.13"
}
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}