generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.09 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
111
112
{
"name": "@graasp/query-client",
"version": "5.7.0",
"author": "Graasp",
"repository": "graasp/graasp-query-client",
"type": "module",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"contributors": [
"Kim Lan Phan Hoang",
"Julien Torrent",
"Basile Spaenlehauer",
"Alvaro Bautista",
"Víctor González",
"Alexandre Chau",
"Thibault Reidy"
],
"dependencies": {
"@tanstack/react-query": "5.61.5",
"@tanstack/react-query-devtools": "5.61.5",
"axios": "1.7.8",
"http-status-codes": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@graasp/sdk": "5.4.0",
"@graasp/translations": "1.42.0",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/jsdom": "21.1.7",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitest/ui": "2.1.8",
"date-fns": "4.1.0",
"env-cmd": "10.1.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.12.0",
"husky": "9.1.7",
"i18next": "23.16.8",
"jsdom": "25.0.1",
"mock-socket": "9.3.1",
"nock": "13.5.6",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"uuid": "11.0.3",
"vitest": "2.1.8"
},
"peerDependencies": {
"@graasp/sdk": "^4.0.0 || ^5.0.0",
"@graasp/translations": "*",
"react": "^18.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"prepack": "yarn build",
"prepare": "yarn prepack && yarn hooks:install",
"prettier:check": "prettier --check {src,test}/**/*.{js,ts,tsx}",
"prettier:write": "prettier --write {src,test}/**/*.{js,ts,tsx}",
"pre-commit": "yarn check",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"test": "yarn vitest",
"test:ci": "yarn vitest run",
"lint": "eslint .",
"post-commit": "git status",
"type-check": "tsc --noEmit",
"check": "yarn prettier:check && yarn type-check && yarn lint"
},
"files": [
"dist"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.5.3"
}