-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.13 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
{
"name": "carbonio-tasks-ui",
"version": "0.0.15",
"description": "Tasks module",
"main": "src/app.tsx",
"scripts": {
"build": "sdk build",
"deploy": "sdk install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --resolve-plugins-relative-to node_modules/@zextras/carbonio-ui-configs src",
"prepare": "is-ci || husky",
"start": "sdk watch",
"test": "jest --maxWorkers=2 --passWithNoTests",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"codegen": "NODE_TLS_REJECT_UNAUTHORIZED=0 graphql-codegen --config codegen.ts",
"codegen:watch": "NODE_TLS_REJECT_UNAUTHORIZED=0 graphql-codegen --config codegen.ts --watch",
"build:dev": "sdk build --dev --pkgRel $(date +%s)"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@faker-js/faker": "^9.3.0",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.4",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typed-document-node": "^5.0.13",
"@graphql-codegen/typescript": "^4.1.3",
"@graphql-codegen/typescript-operations": "^4.4.1",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@graphql-tools/jest-transform": "^2.0.0",
"@testing-library/dom": "^10.3.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@zextras/carbonio-ui-configs": "^2.0.1",
"@zextras/carbonio-ui-sdk": "^1.7.12",
"babel-plugin-styled-components": "^2.1.4",
"dotenv": "^16.4.5",
"eslint-plugin-notice": "^1.0.0",
"graphql-tag": "^2.12.6",
"history": "^5.3.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.1",
"jest-junit": "^16.0.0",
"jest-styled-components": "^7.2.0",
"msw": "^2.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uuid": "^10.0.0"
},
"dependencies": {
"@apollo/client": "~3.10.8",
"@zextras/carbonio-design-system": "9.0.0",
"@zextras/carbonio-shell-ui": "10.0.0",
"core-js": "^3.40.0",
"date-fns": "^4.1.0",
"graphql": "^16.9.0",
"i18next": "^22.5.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^12.3.1",
"react-router-dom": "^5.3.4",
"styled-components": "^6.1.13"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"carbonio": {
"translations_repository": "git@github.com:Zextras/carbonio-tasks-ui-i18n.git",
"name": "carbonio-tasks-ui",
"priority": 10,
"type": "carbonio",
"display": "Tasks",
"icon": "CheckmarkCircle2Outline"
},
"config": {
"translations_repository": "git@github.com:Zextras/carbonio-tasks-ui-i18n.git"
}
}