-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "chrome-extension",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start-react": "react-app-rewired start",
"build-react": "react-app-rewired build",
"build": "TARGET_BROWSER=chrome webpack",
"build-firefox": "TARGET_BROWSER=firefox webpack",
"watch": "webpack --watch",
"watch-firefox": "TARGET_BROWSER=firefox webpack -w",
"lint": "eslint src",
"format": "prettier --write src webpack/webpack.common.js"
},
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.1.3",
"@tabler/icons-react": "^2.22.0",
"@types/antd": "^1.0.0",
"@types/chrome": "^0.0.236",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.26",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"antd": "5.12.4",
"axios": "^1.4.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"css-simple-parser": "^3.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"get-xpath": "^3.1.0",
"opentype.js": "^1.3.4",
"react": "^18.2.0",
"react-command-lib": "^1.0.3",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"string-format": "^2.0.0",
"styled-components": "^5.3.11",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/opentype.js": "^1.3.4",
"prettier": "^3.0.0",
"react-app-rewired": "^2.2.1"
}
}