generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.62 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
113
114
115
116
117
118
119
120
{
"name": "@graasp/apps-query-client",
"version": "3.7.3",
"description": "Query client repository for Graasp apps",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"repository": "git@github.com:graasp/graasp-apps-query-client.git",
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Basile Spaenlehauer",
"Jérémy La Scala",
"Thibault Reidy"
],
"license": "AGPL3.0-only",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json",
"commit-msg": "commitlint --edit $1",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"lint": "eslint .",
"prettier:check": "prettier --check \"{src,test}/**/*.ts\"",
"prettier:write": "prettier --write \"{src,test}/**/*.ts\"",
"type-check": "tsc --noEmit",
"check": "yarn lint && yarn prettier:check && yarn type-check",
"pre-commit": "yarn prettier:check && yarn lint",
"prepare": "yarn build",
"prepack": "yarn build",
"post-commit": "git status",
"start:example": "yarn workspace graasp-query-client-example start",
"test": "vitest",
"test:ci": "yarn && cd example && yarn && cd .. && yarn test"
},
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "6.1.7",
"@mui/material": "6.1.7",
"axios": "1.7.7",
"dexie": "4.0.10",
"http-status-codes": "2.3.0",
"lodash.debounce": "4.0.8",
"miragejs": "0.1.48",
"msw": "2.6.5",
"uuid": "11.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@graasp/sdk": "5.3.0",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/lodash.debounce": "^4",
"@types/node": "22.9.0",
"@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",
"@vitejs/plugin-react": "4.3.3",
"date-fns": "4.1.0",
"eslint": "9.15.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.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-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.12.0",
"happy-dom": "15.11.6",
"husky": "9.1.7",
"nock": "13.5.6",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-test-renderer": "18.3.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-checker": "0.8.0",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.5"
},
"peerDependencies": {
"@graasp/sdk": "^4.22.0 || ^5.0.0",
"@mui/icons-material": "^5.15.5 || ^6.0.0",
"@mui/material": "^5.15.5 || ^6.0.0",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"date-fns": "^3.3.0 || ^4.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"files": [
"dist"
],
"packageManager": "yarn@4.5.1"
}