-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "web-ext-react-template",
"version": "2.2.2",
"private": true,
"scripts": {
"build": "ts-node -T build.ts --firefox --chrome",
"build:firefox": "ts-node -T build.ts --firefox",
"build:chrome": "ts-node -T build.ts --chrome",
"run:firefox": "web-ext run -s dist-firefox",
"run:chrome": "web-ext run -s dist-chrome -t chromium",
"package:firefox": "web-ext build -s dist-firefox --overwrite-dest",
"lint": "eslint --max-warnings=0 . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"esbuild": "^0.15.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/node": "^18.8.2",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chokidar": "^3.5.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"web-ext": "^7.2.0"
}
}