generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.41 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
103
104
105
106
107
108
109
110
{
"name": "@graasp/chatbox",
"version": "3.3.1",
"license": "AGPL-3.0-only",
"repository": "[email protected]:graasp/graasp-chatbox.git",
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Basile Spaenlehauer"
],
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"prettier:check": "prettier --check \"{src,cypress}/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"{src,cypress}/**/*.{ts,tsx}\"",
"test": "yarn build && yarn cypress:ci",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"prepack": "yarn build",
"cypress:open": "cypress open",
"cypress:ci": "cypress run --component"
},
"dependencies": {
"lodash.groupby": "^4.6.0",
"prism-react-renderer": "^2.4.0",
"react-markdown": "^9.0.1",
"react-mentions": "^4.4.10",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@graasp/query-client": "^5.6.1",
"@graasp/sdk": "^5.0.0",
"@graasp/stylis-plugin-rtl": "^2.2.0",
"@graasp/translations": "^1.42.0",
"@graasp/ui": "^5.4.2",
"@mui/icons-material": "^6.1.9",
"@mui/lab": "6.0.0-beta.17",
"@mui/material": "^6.1.9",
"@tanstack/react-query": "5.61.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash.groupby": "^4.6.9",
"@types/lodash.truncate": "^4.4.9",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-mentions": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.16.0",
"date-fns": "^4.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"i18next": "24.0.2",
"lucide-react": "^0.462.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.2",
"react-router-dom": "^7.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"stylis-plugin-rtl": "^2.1.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"vite": "5.4.11",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@graasp/query-client": "*",
"@graasp/sdk": "*",
"@graasp/stylis-plugin-rtl": "*",
"@graasp/translations": "*",
"@graasp/ui": "*",
"@mui/icons-material": "^5 || ^6.0.0",
"@mui/lab": "^5.0.0-alpha.121",
"@mui/material": "^5 || ^6.0.0",
"@tanstack/react-query": "^4",
"date-fns": "^3.2.0 || ^4.0.0",
"i18next": "^23.7.0 || ^24.0.0",
"lucide-react": "*",
"react": "*",
"react-dom": "*",
"react-i18next": "^13.0.0 || ^14.0.0 || ^15.0.0"
},
"packageManager": "[email protected]"
}