-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"name": "monorepo",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"format-BE": "nx run-many -t format-BE",
"format-BE:affected": "nx affected -t format-BE",
"build-BE": "nx run-many -t build-BE",
"build-BE:affected": "nx affected -t build-BE",
"unittest-BE": "nx run-many -t unittest-BE",
"unittest-BE:affected": "nx affected -t unittest-BE",
"integrationtest-BE": "nx run-many -t integrationtest-BE",
"integrationtest-BE:affected": "nx affected -t integrationtest-BE",
"generate-api": "nx run-many -t generate-api",
"generate-api:affected": "nx affected -t generate-api"
},
"dependencies": {
"next": "^15.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@jnxplus/nx-maven": "1.16.1",
"@nx/devkit": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/next": "20.3.0",
"@nx/playwright": "20.3.0",
"@nx/powerpack-s3-cache": "^1.1.1",
"@nx/workspace": "20.3.0",
"@playwright/test": "^1.49.1",
"@prettier/plugin-xml": "^3.4.1",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.1",
"@swc/helpers": "^0.5.15",
"@types/jest": "29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@typescript-eslint/utils": "^8.18.1",
"babel-jest": "29.7.0",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "20.3.0",
"nx-remotecache-minio": "^20.0.0",
"prettier": "^3.4.2",
"prettier-plugin-java": "^2.6.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}