generated from bigbluebutton/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "h5p-plugin",
"version": "0.1.0",
"private": true,
"main": "./src/index.tsx",
"dependencies": {
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.7",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bigbluebutton-html-plugin-sdk": "0.0.68",
"h5p-standalone": "file:lib/h5p-standalone",
"path": "^0.12.7",
"ramda": "^0.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-iframe": "^1.8.5",
"react-modal": "^3.16.1",
"react-select": "^5.7.3",
"styled-components": "^5.3.3",
"uuid": "^9.0.0"
},
"scripts": {
"build-bundle": "webpack --mode production",
"start": "webpack serve --mode development",
"build:watch": "rm -rf dist && tsc -w --module CommonJS",
"fetch-standalone": "git clone https://github.com/bigbluebutton/h5p-standalone.git lib/h5p-standalone",
"lint": "eslint ./src/*",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "watch 'yarn lint'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"copy-webpack-plugin": "^12.0.2",
"@types/node": "^20.4.4",
"@types/ramda": "^0.30.1",
"@types/react": "^18.2.15",
"@types/react-modal": "^3.16.0",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.4",
"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",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.6",
"watch": "^0.13.0",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.1"
}
}