-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
73 lines (73 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "overleaf-textarea",
"version": "3.0.0",
"description": "Extract text from overleaf and put it into a textarea",
"private": false,
"license": "gplv3",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build": "npm run build:chrome && npm run build:firefox",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"diff-match-patch": "^1.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webext-domain-permission-toggle": "^2.1.0",
"webext-dynamic-content-scripts": "^7.1.2",
"webextension-polyfill-ts": "^0.25.0"
},
"devDependencies": {
"@abhijithvijayan/tsconfig": "^1.3.0",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.15.0",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/webpack": "^4.41.29",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.5",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"filemanager-webpack-plugin": "^3.1.1",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^4.5.2",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.53.0",
"optimize-css-assets-webpack-plugin": "^5.0.6",
"postcss": "^8.3.0",
"postcss-loader": "^4.3.0",
"prettier": "^2.3.0",
"resolve-url-loader": "^3.1.3",
"sass-loader": "^10.2.0",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^27.0.5",
"typescript": "^4.1.5",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.0",
"webpack-extension-reloader": "^1.1.4",
"wext-manifest-loader": "^2.3.0",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}