-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "hume-extension",
"version": "1.0.0",
"description": "Chrome extension for Hume AI Developer Platform",
"main": "index.js",
"scripts": {
"start": "webpack --watch --progress --config webpack.dev.js",
"build": "webpack --watch --progress --config webpack.prod.js"
},
"author": "Zachary Greathouse",
"license": "UNLICENSED",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0"
},
"devDependencies": {
"@types/chrome": "^0.0.242",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}