-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
74
75
76
77
78
79
{
"name": "extension",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:chrome": "webpack --env platform=chrome --mode=development --watch",
"dev:ff": "webpack --env platform=firefox --mode=development --watch",
"build:chrome": "webpack --env platform=chrome --mode=production",
"build:ff": "webpack --env platform=firefox --mode=production",
"check": "tsc --noEmit",
"lint": "eslint --ext=js,ts,tsx"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"@seldszar/yael": "^2.2.0",
"ky": "^0.30.0",
"lodash-es": "^4.17.21",
"p-timeout": "^5.1.0",
"preact": "^10.7.1",
"react": "18.1.0",
"react-dom": "^18.1.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-use": "^17.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/babel-plugin": "^11.9.2",
"@prefresh/babel-plugin": "^0.4.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.31",
"@types/p-timeout": "^1.2.2",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/webextension-polyfill": "^0.8.3",
"autoprefixer": "^9",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^16.0.1",
"eslint": "^8.14.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"lint-staged": "^12.4.1",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^2.6.2",
"twin.macro": "^2.8.2",
"typescript": "^4.6.4",
"webextension-polyfill": "^0.9.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn run check"
},
"browserslist": [
"last 2 years"
]
}