-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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": "extension-omegle",
"version": "0.2.3",
"description": "My Chrome Extension",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --config config/webpack.config.js",
"build": "webpack --mode=production --config config/webpack.config.js",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\""
},
"devDependencies": {
"@types/chrome": "^0.0.181",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.2",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.0",
"prettier": "^2.7.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"grommet": "^2.27.0",
"grommet-icons": "^4.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-hot-toast": "^2.4.0",
"uuid": "^9.0.0"
}
}