forked from bigbluebutton/greenlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.88 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
{
"name": "app",
"private": "true",
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@hcaptcha/react-hcaptcha": "^1.3.0",
"@heroicons/react": "^2.0.11",
"@hookform/resolvers": "^2.8.8",
"@popperjs/core": "^2.11.5",
"@rails/actioncable": "^7.0.2",
"axios": "^0.26.1",
"bootstrap": "5.1.3",
"bootstrap-icons": "^1.8.3",
"esbuild": "^0.14.42",
"esbuild-plugin-import-glob": "^0.1.1",
"esbuild-sass-plugin": "^2.2.6",
"i18next": "^21.9.1",
"i18next-http-backend": "^1.4.1",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-avatar-editor": "^13.0.0",
"react-bootstrap": "^2.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.28.0",
"react-i18next": "^11.18.5",
"react-query": "^3.34.16",
"react-router-dom": "^6.4.3",
"react-test-renderer": "^17.0.2",
"react-toastify": "^9.1.1",
"sass": "^1.52.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.3",
"tinycolor2": "^1.4.2",
"yup": "^0.32.11"
},
"scripts": {
"build": "node esbuild.mjs",
"build:css": "sass ./app/assets/stylesheets/application.bootstrap.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules --style compressed",
"build:development": "node esbuild.dev.mjs",
"build:development:css": "sass ./app/assets/stylesheets/application.bootstrap.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0"
}
}