-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "ts-react-chrome-ext",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "esbuild src/* --bundle '--define:process.env.NODE_ENV=\"production\"' --outdir=dist/src --sourcemap && yarn reload",
"watch": "node watch.js",
"reload": "touch dist/reload",
"pretty-quick": "pretty-quick",
"precommit": "pretty-quick --staged",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 3 chrome version"
],
"development": [
"last 3 chrome version"
]
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"webextension-polyfill-ts": "0.26.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/node": "14.18.63",
"@types/react": "17.0.91",
"@types/react-dom": "17.0.26",
"@types/chrome": "0.1.38",
"chokidar": "3.6.0",
"esbuild": "0.20.2",
"husky": "7.0.4",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"shelljs": "0.8.5",
"typescript": "4.9.5"
}
}