-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "bigbluebutton-html-plugin-sdk",
"version": "0.0.69",
"homepage": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk.git"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.4.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-watch": "^8.0.0",
"lint-staged": "11.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6",
"watch": "^1.0.2"
},
"scripts": {
"prepublishOnly": "npm run build # runs before publish",
"build": "rm -rf dist/cjs && tsc --module CommonJS --outDir dist/cjs",
"build:watch": "rm -rf dist && tsc -w --module CommonJS",
"lint": "eslint . --ignore-pattern node_modules",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "watch 'yarn lint'"
},
"files": [
"dist"
],
"keywords": [
"react hook",
"react-hook",
"use",
"fetch",
"hook",
"react",
"use hooks",
"graphql",
"mutation",
"query",
"useAxios",
"apollo"
],
"dependencies": {
"@apollo/client": "^3.8.7",
"@browser-bunyan/console-formatted-stream": "^1.8.0",
"browser-bunyan": "^1.8.0"
}
}