-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 817 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 817 Bytes
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
{
"name": "react-extension",
"version": "1.0.0",
"description": "Chrome extension in react",
"main": "index.js",
"scripts": {
"dev": "webpack --watch --progress --config webpack.dev.js",
"build": "webpack --watch --progress --config webpack.prod.js"
},
"author": "Binston Cardoza",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.166",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}