-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "carbonio-contacts-ui",
"version": "1.12.0",
"description": "Contacts module",
"main": "src/app.tsx",
"engines": {
"node": "v18",
"npm": "v10"
},
"scripts": {
"build": "sdk build",
"start": "sdk watch",
"deploy": "sdk deploy",
"dev-deploy": "sdk build && sdk deploy",
"test": "jest --maxWorkers=50%",
"test:watch": "npm run test -- --onlyChanged --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --resolve-plugins-relative-to node_modules/@zextras/carbonio-ui-configs src",
"lint-errors": "eslint --ext .js,.jsx,.ts,.tsx --quiet --resolve-plugins-relative-to node_modules/@zextras/carbonio-ui-configs src",
"lint-check": "npm run lint-errors; npm run type-check",
"lint-stats": "eslint --ext .js,.jsx,.ts,.tsx --format node_modules/eslint-stats/byErrorAndWarningStacked --resolve-plugins-relative-to node_modules/@zextras/carbonio-ui-configs src",
"build:dev": "sdk build --dev --pkgRel $(date +%s)"
},
"keywords": [],
"author": "Zextras Crab Onions Team <https://www.zextras.com/carbonio/>",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@faker-js/faker": "^8.4.1",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@zextras/carbonio-ui-configs": "^1.0.0",
"@zextras/carbonio-ui-sdk": "^1.7.7",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-stats": "^1.0.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.1.2",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.2.0",
"msw": "2.2.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.0"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.2",
"@mui/material": "^6.1.2",
"@reduxjs/toolkit": "^2.2.7",
"@zextras/carbonio-design-system": "^8.0.0",
"@zextras/carbonio-shell-ui": "devel",
"axios": "^1.6.8",
"core-js": "^3.36.0",
"i18next": "^22.5.1",
"immer": "^9.0.19",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.0",
"react-i18next": "^12.3.1",
"react-redux": "^8.1.3",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.11",
"uuid": "^9.0.1",
"zustand": "^4.5.2"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"carbonio": {
"translations_repository": "[email protected]:Zextras/carbonio-contacts-ui-i18n.git",
"name": "carbonio-contacts-ui",
"priority": 7,
"type": "carbonio",
"attrKey": "zimbraFeatureContactsEnabled",
"display": "Contacts",
"icon": "ContactsModOutline",
"sentryDsn": "https://[email protected]/10"
}
}