forked from zaproxy/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4.03 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
104
105
106
107
108
109
110
111
{
"name": "zap-extension",
"version": "0.0.5",
"description": "ZAP Browser Extension - allows ZAP to interact directly with the browser.",
"private": true,
"repository": "https://github.com/zaproxy/browser-extension/",
"author": {
"name": "ZAP Core Team",
"email": "[email protected]",
"url": "https://zaproxy.org"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"yarn": ">= 1.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jest-environment-node"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest --coverage --testTimeout=10000",
"buildAndTest": "yarn run build && yarn test"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"advanced-css-reset": "^1.2.2",
"emoji-log": "^1.0.2",
"i18next": "^23.2.6",
"i18next-browser-languagedetector": "^7.1.0",
"lodash": "^4.17.21",
"webext-base-css": "^1.3.1",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"4.5": "^0.5.0",
"@abhijithvijayan/eslint-config": "2.6.3",
"@abhijithvijayan/eslint-config-airbnb": "^1.0.2",
"@abhijithvijayan/tsconfig": "^1.3.0",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-transform-destructuring": "^7.13.17",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.4.3",
"@playwright/test": "^1.33.0",
"@types/jest": "^29.4.0",
"@types/json-server": "^0.14.4",
"@types/lodash": "^4.14.195",
"@types/node": "^20.1.0",
"@types/text-encoding": "^0.0.36",
"@types/webextension-polyfill": "^0.10.0",
"@types/webpack": "^4.41.29",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.18.2",
"filemanager-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.0.0",
"json-server": "^0.17.3",
"mini-css-extract-plugin": "^1.6.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"playwright": "^1.33.0",
"playwright-webextext": "^0.0.3",
"postcss": "^8.3.0",
"postcss-loader": "^4.3.0",
"prettier": "^2.3.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.53.0",
"sass-loader": "^10.2.0",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.7.0",
"webpack-ext-reloader": "^1.1.9",
"wext-manifest-loader": "^2.3.0",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}