mitmproxy/web/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

{
2015-03-22 13:33:42 +00:00
"name": "mitmproxy",
"private": true,
"scripts": {
2016-06-16 04:20:32 +00:00
"test": "jest",
2016-07-13 16:16:31 +00:00
"build": "gulp prod",
2016-06-16 04:20:32 +00:00
"start": "gulp"
2015-03-22 13:33:42 +00:00
},
"jest": {
2016-08-15 15:14:29 +00:00
"testRegex": "__tests__/.*Spec.js$",
2015-03-22 13:33:42 +00:00
"testPathDirs": [
2016-06-16 10:06:08 +00:00
"<rootDir>/src/js"
2015-03-22 13:33:42 +00:00
],
2016-06-16 10:06:08 +00:00
"unmockedModulePathPatterns": [
2016-07-26 00:03:50 +00:00
"react"
2016-06-16 10:06:08 +00:00
]
2015-03-22 13:33:42 +00:00
},
"dependencies": {
2016-02-28 21:35:08 +00:00
"bootstrap": "^3.3.6",
2016-05-02 21:33:43 +00:00
"classnames": "^2.2.5",
2015-10-08 10:43:55 +00:00
"flux": "^2.1.1",
2016-08-15 15:09:45 +00:00
"history": "^3.0.0",
2016-05-02 21:33:43 +00:00
"lodash": "^4.11.2",
2016-06-06 01:20:51 +00:00
"react": "^15.1.0",
2016-08-15 15:09:45 +00:00
"react-codemirror": "^0.2.6",
2016-06-06 01:20:51 +00:00
"react-dom": "^15.1.0",
2016-06-02 01:34:12 +00:00
"react-redux": "^4.4.5",
"redux": "^3.5.2",
2016-06-03 06:40:30 +00:00
"redux-logger": "^2.6.1",
2016-06-04 00:11:23 +00:00
"redux-thunk": "^2.1.0",
2016-08-15 15:09:45 +00:00
"shallowequal": "^0.2.2"
2015-03-22 13:33:42 +00:00
},
"devDependencies": {
2016-05-02 21:33:43 +00:00
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
2016-06-16 10:06:08 +00:00
"babel-jest": "^12.1.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
2016-05-02 21:33:43 +00:00
"babel-preset-es2015": "^6.6.0",
2016-02-28 21:35:08 +00:00
"babel-preset-react": "^6.5.0",
2016-05-02 21:33:43 +00:00
"babelify": "^7.3.0",
2016-02-28 21:35:08 +00:00
"browserify": "^13.0.0",
2016-06-25 02:43:30 +00:00
"envify": "^3.4.1",
2016-05-02 21:33:43 +00:00
"eslint": "^2.9.0",
2016-02-28 21:35:08 +00:00
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.6",
2016-02-28 21:35:08 +00:00
"gulp-eslint": "^2.0.0",
"gulp-less": "^3.0.5",
2015-10-08 10:43:55 +00:00
"gulp-livereload": "^3.8.1",
"gulp-notify": "^2.2.0",
2016-02-28 21:35:08 +00:00
"gulp-peg": "^0.2.0",
"gulp-plumber": "^1.1.0",
2015-10-08 10:43:55 +00:00
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
2016-02-28 21:35:08 +00:00
"gulp-util": "^3.0.7",
2016-06-16 10:06:08 +00:00
"jest": "^12.1.1",
2016-07-26 00:03:50 +00:00
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
2015-10-08 10:43:55 +00:00
"uglifyify": "^3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
2016-02-28 21:35:08 +00:00
"watchify": "^3.7.0"
2015-03-22 13:33:42 +00:00
}
2014-09-13 15:00:05 +00:00
}