mitmproxy/web/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

{
2021-06-09 15:49:04 +00:00
"name": "mitmproxy",
"private": true,
"scripts": {
2021-08-19 16:21:25 +00:00
"test": "tsc --noEmit && jest --coverage",
2021-06-09 15:49:04 +00:00
"build": "gulp prod",
"start": "gulp"
},
"dependencies": {
2021-08-20 16:47:34 +00:00
"@popperjs/core": "^2.9.3",
"bootstrap": "^3.4.1",
2021-06-09 15:49:04 +00:00
"classnames": "^2.3.1",
2021-08-20 16:47:34 +00:00
"codemirror": "^5.62.3",
2021-06-09 15:49:04 +00:00
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
2021-06-13 12:10:43 +00:00
"react-popper": "^2.2.5",
2021-06-09 15:49:04 +00:00
"react-redux": "^7.2.4",
2021-08-20 16:47:34 +00:00
"redux": "^4.1.1",
2021-06-09 15:49:04 +00:00
"redux-thunk": "^2.3.0",
"shallowequal": "^1.1.0",
"stable": "^0.1.8"
},
"devDependencies": {
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
2021-08-20 16:47:34 +00:00
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
2021-08-20 16:47:34 +00:00
"@types/jest": "^27.0.1",
"@types/redux-mock-store": "^1.0.3",
"esbuild": "^0.12.21",
2021-06-09 15:49:04 +00:00
"esbuild-jest": "^0.5.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
2021-08-20 16:47:34 +00:00
"gulp-esbuild": "^0.8.5",
"gulp-less": "^5.0.0",
2021-06-09 15:49:04 +00:00
"gulp-livereload": "^4.0.2",
"gulp-notify": "^4.0.0",
"gulp-peg": "^0.2.0",
"gulp-plumber": "^1.2.1",
"gulp-replace": "^1.1.3",
2021-06-09 15:49:04 +00:00
"gulp-sourcemaps": "^3.0.0",
2021-08-20 16:47:34 +00:00
"jest": "^27.0.6",
2021-08-19 16:21:25 +00:00
"jest-fetch-mock": "^3.0.3",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"through2": "^4.0.2",
"typescript": "^4.3.5"
2021-06-09 15:49:04 +00:00
}
2014-09-13 15:00:05 +00:00
}