-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1000 Bytes
/
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
{
"name": "ocr_extension",
"version": "0.3.0",
"description": "A browser extension working with a backend server running OCR+translation to in-place translate all images on an active tab.",
"license": "GPL-3.0",
"author": "Davide Grassano",
"homepage": "https://github.com/Crivella/ocr_extension",
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js --progress",
"build:prod": "node ./node_modules/webpack/bin/webpack.js --mode production",
"build:watch": "npm run build -- -w",
"start": "npm run build && web-ext run -s extension/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.3",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tanstack/react-query": "^4.29.12",
"axios": "1.3.1",
"md5": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}