-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.8 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
{
"name": "izg-configuration-console",
"private": true,
"version": "1.17.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"start:local-dev": "docker-compose -f ./local-docker/docker-compose.yml up -d && npm run dev && docker-compose -f ./local-docker/docker-compose.yml down",
"start:local-docker": "docker-compose --env-file .env.local up --build && docker-compose --env-file .env.local down",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
"code-quality-check": "npm run lint && npm run type-check",
"type-check": "tsc --noEmit",
"test:watch": "jest --watch",
"test": "jest",
"fix-vulnerabilities": "fix-vulnerabilities && npm install && npm audit",
"swagger:generate-doc": "npx next-swagger-doc-cli src/next-swagger-doc.json --output swaggerAPI.json",
"test:dev": "cross-env BASE_URL=https://dev.console.izgateway.org npx playwright test --project=Chrome --headed"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.1123.0",
"@aws-sdk/client-secrets-manager": "^3.1123.0",
"@aws-sdk/lib-dynamodb": "^3.1123.0",
"@axe-core/react": "^4.13.0",
"@babel/types": "^7.29.8",
"@elastic/ecs-winston-format": "^1.5.3",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.3.0",
"@fontsource/ubuntu": "^5.3.0",
"@mui/icons-material": "5.18.0",
"@mui/lab": "^5.0.0-alpha.177",
"@mui/material": "^5.18.0",
"@mui/x-data-grid": "7.29.13",
"@mui/x-date-pickers": "^6.20.2",
"@types/node": "^20.19.43",
"@types/node-fetch": "^2.6.13",
"@types/tcp-ping": "^0.1.6",
"@types/xml2js": "^0.4.14",
"@xmldom/xmldom": "^0.9.12",
"axios": "^1.20.0",
"follow-redirects": "^1.16.0",
"http-status-codes": "^2.3.0",
"js-cookie": "^3.0.8",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"moment-timezone": "^0.6.3",
"next": "^16.3.4",
"next-api-middleware": "^3.0.0",
"next-auth": "^4.24.15",
"next-swagger-doc": "^0.5.0",
"node-forge": "^1.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-to-print": "^2.15.1",
"swagger-ui-react": "^5.32.14",
"swr": "^2.5.1",
"waait": "^1.0.5",
"winston": "^3.19.0",
"xml-js": "^1.6.11",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.29.7",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@izgateway/dependency-scripts": "^1.0.9",
"@next/eslint-plugin-next": "^16.3.4",
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@types/gtag.js": "^0.0.20",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.25",
"@types/react": "^18.3.31",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^14.5.4",
"dotenv": "^16.6.1",
"eslint-config-next": "^16.3.4",
"eslint-config-prettier": "^8.10.2",
"husky": "^8.0.3",
"jest": "^30.5.0",
"jest-environment-jsdom": "^30.5.0",
"nodemon": "^3.1.14",
"prettier": "^2.8.8",
"rimraf": "^6.1.3",
"semver": "^7.8.5",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"@eslint/eslintrc": {
"ajv": "^6.14.0"
},
"eslint": {
"brace-expansion": "^2.0.2"
},
"fast-uri": "4.1.3",
"glob": "^13.0.6",
"js-yaml": "4.3.2",
"jsdom": "^28.1.0",
"qs": "6.16.0",
"swagger-ui-react": {
"immutable": "^4.3.8"
},
"uuid": "npm:@izgateway/uuid-cjs@^14.0.0"
}
}