This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
57 lines (57 loc) · 1.4 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
{
"private": true,
"scripts": {
"test": "npm run build && xo",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch"
},
"dependencies": {
"dom-chef": "^5.0.0-1",
"element-ready": "^5.0.0",
"fit-textarea": "^3.0.0",
"select-dom": "^7.1.1",
"webext-base-css": "^1.3.1",
"webext-domain-permission-toggle": "^2.1.0",
"webext-dynamic-content-scripts": "^7.1.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.9.0",
"@types/chrome": "0.0.145",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/react": "^17.0.13",
"@types/terser-webpack-plugin": "^5.0.4",
"copy-webpack-plugin": "^9.0.1",
"daily-version": "^2.0.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"npm-run-all": "^4.1.5",
"size-plugin": "^2.0.2",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"xo": "^0.40.3"
},
"xo": {
"extends": "xo-react",
"envs": [
"browser",
"webextensions"
],
"rules": {
"import/no-unassigned-import": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"@typescript-eslint/triple-slash-reference": "off"
},
"settings": {
"react": {
"version": "16.13"
}
}
}
}