-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 2.7 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
{
"name": "app-embedder-for-retool",
"version": "1.1.0",
"description": "Host Retool apps in Chrome's SidePanel",
"repository": {
"type": "git",
"url": "https://github.com/khill-fbmc/chrome-ext-retool-embedder.git"
},
"license": "MIT",
"scripts": {
"build": "node utils/build.js",
"fix": "eslint src --fix",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"start": "node utils/webserver.js"
},
"dependencies": {
"@extend-chrome/messages": "^1.2.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"i18n": "^0.15.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"simple-git": "^3.25.0",
"swr": "^2.2.5",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/i18n": "^0.13.12",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"chrome-types": "^0.1.293",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.57.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"file-loader": "^6.2.0",
"fs-extra": "^11.1.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.3.3",
"react-refresh": "^0.14.2",
"react-refresh-typescript": "^2.0.9",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"template-ejs-loader": "^0.9.4",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"type-fest": "^3.5.2",
"typed-emitter": "^2.1.0",
"typescript": "^5.5.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^5.0.4",
"zip-webpack-plugin": "^4.0.1"
}
}