-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
52
{
"name": "scrapegraphai-chrome",
"version": "0.0.1",
"main": "index.js",
"type": "module",
"scripts": {
"build:firefox": "webpack --env firefox=true",
"build:chromium": "webpack --env chromium=true",
"format": "prettier --write .",
"lint": "eslint .",
"zip:firefox": "webpack --env firefox=true && node ./scripts/zip.js",
"zip:chromium": "webpack --env chromium=true && node ./scripts/zip.js"
},
"keywords": [],
"author": "ScrapeGraphAI",
"license": "MIT",
"description": "",
"dependencies": {
"autoprefixer": "^10.4.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.41",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"scrapegraph-js": "^0.0.1",
"tailwindcss": "^3.4.9"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@eslint/js": "^9.16.0",
"archiver": "^7.0.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.1",
"style-loader": "^4.0.0",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.10",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}