-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
103 lines (103 loc) · 3.88 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
99
100
101
102
103
{
"name": "browser-assistant",
"version": "1.4.3",
"apiVersion": "1",
"description": "AdGuard browser extension",
"author": "adguard@adguard.com",
"license": "LGPL-3.0",
"scripts": {
"lint": "eslint . && tsc --noEmit",
"dev": "cross-env BUILD_ENV=dev ts-node scripts/bundle",
"beta": "cross-env BUILD_ENV=beta ts-node scripts/bundle",
"release": "cross-env BUILD_ENV=release ts-node scripts/bundle",
"test": "jest",
"test:watch": "jest --watch",
"locales": "ts-node scripts/translations",
"crx": "ts-node scripts/crx.ts",
"update-json": "ts-node scripts/update-json.ts",
"increment": "yarn version --patch --no-git-tag-version",
"artifacts:beta": "export BUILD_ENV=beta; yarn beta && yarn crx && ts-node scripts/version-info",
"artifacts:beta-firefox": "export BUILD_ENV=beta; yarn beta firefox && yarn update-json && ts-node scripts/version-info",
"artifacts:release": "export BUILD_ENV=release; yarn release && yarn crx && ts-node scripts/version-info"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"@adguard/assistant": "^4.3.61",
"@adguard/translate": "^0.2.5",
"classnames": "^2.3.1",
"compare-versions": "^4.1.3",
"lodash": "^4.17.21",
"mobx": "^6.3.7",
"mobx-react": "^7.2.1",
"nanoid": "^4.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-intl": "^3.12.0",
"react-modal": "^3.11.2",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.12.1",
"@types/chrome": "^0.0.193",
"@types/classnames": "^2.3.1",
"@types/copy-webpack-plugin": "^5.0.3",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.7.6",
"@types/webextension-polyfill": "^0.9.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"axios": "^0.27.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"commander": "^6.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"css-loader": "^3.4.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"form-data": "^3.0.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^4.3.0",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-svg": "^3.0.0",
"string-replace-loader": "^3.1.0",
"style-loader": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"url-loader": "^3.0.0",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-sources": "^3.2.3",
"zip-webpack-plugin": "^4.0.1"
}
}