-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 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
30
31
32
33
34
35
36
37
{
"name": "frontend-scraper-extension",
"version": "1.0.0",
"description": "You can use this extension to scrape fonts and images from a website.",
"scripts": {
"build": "webpack",
"start": "webpack --watch"
},
"author": "phibersoft",
"keywords": [
"chrome",
"extension",
"typescript",
"webpack"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/chrome": "0.0.200",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}