-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
98 lines (98 loc) · 3.02 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "browser-addon",
"version": "6.0.1",
"description": "Browser addon for fast translate text and pages",
"license": "GPL-3.0",
"author": "Vitonsky <https://github.com/vitonsky>",
"scripts": {
"test": "jest",
"test-fast": "TEST_FAST=true jest --maxWorkers=4",
"build:dev": "EXT_TARGET=firefox webpack-cli -wc ./webpack.config.js",
"build:tokens": "themekit build -c themekit.config.json",
"release:patch": "npm version patch",
"prettify": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx}\" && eslint --fix \"{*,**/*}.{ts,tsx,js,jsx}\" && stylelint --fix \"{*,**/*}.css\"",
"prepare": "husky install"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@bem-react/classname": "^1.5.10",
"@bem-react/core": "^3.0.1",
"@popperjs/core": "^2.11.5",
"@react-aria/interactions": "^3.9.1",
"@react-aria/utils": "^3.13.1",
"@translate-tools/core": "^2.0.1",
"colord": "^2.9.1",
"domtranslator": "^0.0.1",
"effector": "^22.4.1",
"fp-ts": "^2.12.1",
"google-tts-api": "^2.0.2",
"idb": "^7.1.1",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"monaco-editor-core": "^0.39.0",
"papaparse": "^5.3.2",
"patronum": "^1.12.3",
"penpal": "^6.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-elegant-ui": "^0.3.3",
"react-infinite-scroller": "^1.2.6",
"react-shadow": "^18.6.2",
"use-debounce": "^8.0.4",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^12.1.4",
"@svgr/webpack": "^8.1.0",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.182",
"@types/node": "^20.14.2",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-infinite-scroller": "^1.2.3",
"@types/resize-observer-browser": "^0.1.7",
"@types/webextension-polyfill": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@yandex/themekit": "^1.6.8",
"babel-loader": "^8.2.5",
"chatgpt": "^5.1.3",
"copy-webpack-plugin": "^6.4.1",
"crx": "^5.0.1",
"css-loader": "^5.2.6",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"fake-indexeddb": "^4.0.0",
"file-loader": "^6.2.0",
"husky": "^7.0.1",
"jest": "^29.3.1",
"jest-localstorage-mock": "^2.4.22",
"jest-webextension-mock": "^3.7.22",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"postcss-loader": "^4.3.0",
"postcss-rem-to-pixel": "^4.1.2",
"prettier": "^2.7.1",
"sharp": "^0.32.1",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.3",
"ts-jest": "^29.0.3",
"ts-loader": "^8.4.0",
"typescript": "^5.4.5",
"web-ext": "^8.2.0",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.10.0"
}
}