-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.24 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.24 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
{
"name": "admin-ui",
"version": "0.0.0-semantically-released",
"private": true,
"type": "module",
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=22.14.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "pnpm --filter @zextras/admin-ui-bootstrap build",
"build:dev": "pnpm --filter @zextras/admin-ui-bootstrap build:dev",
"postbuild": "pnpm exec tsx scripts/generate-pkgbuild.ts",
"dev": "pnpm --filter @zextras/admin-ui-bootstrap dev",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"deploy": "pnpm exec tsx scripts/deploy.ts",
"deploy:dev": "pnpm exec tsx scripts/deploy.ts development",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"type-check": "turbo run type-check",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-lint": "turbo run type-check && turbo run lint",
"sonar": "sonar-scanner",
"reset": "pnpm exec tsx scripts/reset.ts"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"react": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@tsconfig/vite-react": "^7.0.2",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/browser-preview": "^4.1.0",
"@vitest/coverage-istanbul": "^4.1.0",
"@vitest/ui": "^4.1.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"depcheck": "^1.4.7",
"eslint": "^9.39.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^7.6.6",
"eslint-plugin-unused-imports": "^4.3.0",
"knip": "^5.88.1",
"lit": "^3.3.2",
"playwright": "^1.59.1",
"pnpm": "^10.15.1",
"react-router": "^7.13.0",
"semantic-release": "^25.0.2",
"sonarqube-scanner": "^4.3.6",
"tsx": "^4.21.0",
"turbo": "latest",
"typescript": "^6.0.0",
"typescript-eslint": "^8.49.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"msw": {
"workerDirectory": [
"./packages/test-utils/public",
"./packages/ui-shared/public",
"./apps/admin-ui-bootstrap/public",
"./apps/admin-ui-console/public",
"./apps/admin-ui-dashboard/public",
"./apps/admin-ui-subscription/public",
"./apps/admin-ui-domains/public",
"./apps/admin-ui-privacy/public",
"./apps/admin-ui-mta/public",
"./apps/admin-ui-storage/public",
"./apps/admin-ui-backup/public",
"./apps/admin-ui-legalhold/public",
"./apps/admin-ui-cos/public",
"public"
]
},
"carbonio": {
"translations_repository": "git@github.com:Zextras/carbonio-admin-manage-ui-i18n.git",
"name": "carbonio-admin-console-ui",
"priority": 3,
"type": "carbonioAdmin",
"display": "Manage",
"icon": "List"
}
}