-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "magically",
"version": "1.0.0",
"description": "A simple chrome extension on OpenAI GPT3 for the lazy ones like me.",
"main": "index.js",
"scripts": {
"dev": "webpack --watch --config webpack.development.js",
"dist": "webpack --config webpack.distribution.js",
"publish-chrome": "webpack --config webpack.publish.chrome.js"
},
"keywords": [
"Open",
"AI",
"ChatGPT",
"GPT3",
"Productivity"
],
"author": "Bhavin Kamani",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.206",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/webspeechapi": "^0.0.29",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"webpack-obfuscator": "^3.5.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@supabase/supabase-js": "^2.2.1",
"@types/lodash": "^4.14.191",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.6.1",
"react-spinners": "^0.13.7"
}
}