This repository was archived by the owner on Feb 12, 2025. It is now read-only.
generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.99 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@graasp/query-client",
"version": "1.0.0",
"workspaces": [
"example"
],
"repository": "graasp/graasp-query-client",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"author": "Graasp",
"contributors": [
"Kim Lan Phan Hoang",
"Julien Torrent",
"Basile Spaenlehauer",
"Alvaro Bautista",
"Víctor González",
"Alexandre Chau"
],
"dependencies": {
"@graasp/sdk": "1.0.0",
"@graasp/translations": "1.13.0",
"axios": "0.27.2",
"crypto-js": "4.1.1",
"http-status-codes": "2.2.0",
"immutable": "4.3.0",
"qs": "6.11.1",
"react-query": "3.39.3",
"uuid": "9.0.0"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/crypto-js": "4.1.1",
"@types/jest": "29.5.1",
"@types/js-cookie": "3.0.3",
"@types/jsdom": "16.2.15",
"@types/node": "18.16.3",
"@types/qs": "6.9.7",
"@types/react": "17.0.58",
"@types/react-dom": "17.0.16",
"@types/react-test-renderer": "17.0.1",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"babel-jest": "29.5.0",
"env-cmd": "10.1.0",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "28.1.3",
"jest-immutable-matchers": "3.0.0",
"js-cookie": "3.0.1",
"microbundle-crl": "0.13.11",
"mock-socket": "9.2.1",
"nock": "13.3.1",
"prettier": "2.8.8",
"react-test-renderer": "17.0.2",
"standard-version": "9.5.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"wait-on": "7.0.1"
},
"peerDependencies": {
"react": "^17.0.0"
},
"localDependencies": {
"react": "./example/node_modules/react",
"react-dom": "./example/node_modules/react-dom"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"start:example": "yarn workspace graasp-query-client-example start",
"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 prettier:check && yarn lint",
"hooks:uninstall": "husky uninstall",
"hooks:install": "husky install",
"predeploy": "cd example && yarn install && yarn run build",
"test": "jest --silent",
"test:watch": "yarn test --watchAll",
"test:ci": "yarn && cd example && yarn && cd .. && yarn test",
"deploy": "gh-pages -d example/build",
"release": "standard-version",
"lint": "eslint .",
"post-commit": "git status",
"type-check": "tsc --noEmit --project tsconfig.test.json",
"check": "yarn prettier:check && yarn type-check && yarn lint"
},
"eslintConfig": {
"extends": "react-app"
},
"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"
]
},
"resolutions": {
"typescript": "4.9.5",
"rollup-plugin-typescript2": "0.34.1",
"postcss": "7.0.36",
"nth-check": "2.0.1"
},
"packageManager": "[email protected]"
}