dispatch/client/package.json

95 lines
3.0 KiB
JSON
Raw Normal View History

2015-01-17 01:37:21 +00:00
{
2016-01-05 18:29:22 +00:00
"name": "dispatch",
2015-01-17 01:37:21 +00:00
"version": "0.0.0",
"description": "",
"license": "MIT",
2015-01-17 01:37:21 +00:00
"main": "index.js",
2018-04-13 18:47:39 +00:00
"browserslist": [
2018-05-25 01:26:41 +00:00
">0.4%",
"not op_mini all"
2018-04-13 18:47:39 +00:00
],
2015-01-17 01:37:21 +00:00
"devDependencies": {
2018-10-06 06:09:29 +00:00
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
2018-08-31 01:57:19 +00:00
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
2018-10-06 06:09:29 +00:00
"@babel/preset-env": "^7.1.0",
2018-08-31 01:57:19 +00:00
"@babel/preset-react": "^7.0.0",
2018-10-06 06:09:29 +00:00
"autoprefixer": "^9.1.5",
"babel-core": "^7.0.0-0",
2018-10-06 06:09:29 +00:00
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
2017-04-14 02:33:44 +00:00
"brotli": "^1.3.1",
2018-08-12 21:19:17 +00:00
"css-loader": "^1.0.0",
2018-10-06 06:09:29 +00:00
"cssnano": "^4.1.4",
2018-05-16 01:46:42 +00:00
"del": "^3.0.0",
2018-10-06 06:09:29 +00:00
"eslint": "^5.6.1",
2018-03-25 00:34:41 +00:00
"eslint-config-airbnb": "^16.1.0",
2018-10-06 06:09:29 +00:00
"eslint-config-prettier": "^3.1.0",
2018-08-12 21:19:17 +00:00
"eslint-import-resolver-webpack": "^0.10.1",
2018-10-06 06:09:29 +00:00
"eslint-loader": "^2.1.1",
2018-08-21 22:53:45 +00:00
"eslint-plugin-import": "^2.14.0",
2018-10-06 06:09:29 +00:00
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
2018-08-21 22:53:45 +00:00
"eslint-plugin-react": "^7.11.1",
2017-02-16 02:55:50 +00:00
"express": "^4.14.1",
2018-10-06 06:09:29 +00:00
"express-http-proxy": "^1.4.0",
2018-05-16 01:46:42 +00:00
"gulp": "4.0.0",
2017-02-16 02:55:50 +00:00
"gulp-util": "^3.0.8",
2018-10-06 06:09:29 +00:00
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.3",
2018-08-12 21:19:17 +00:00
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
2018-10-06 06:09:29 +00:00
"prettier": "1.14.3",
2018-08-31 01:57:19 +00:00
"style-loader": "^0.23.0",
2017-04-14 02:33:44 +00:00
"through2": "^2.0.3",
2018-10-06 06:09:29 +00:00
"webpack": "^4.20.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.2"
2015-01-17 01:37:21 +00:00
},
"dependencies": {
2018-08-12 21:19:17 +00:00
"autolinker": "^1.7.1",
2015-06-04 00:06:17 +00:00
"backo": "^1.1.0",
2016-01-11 20:04:57 +00:00
"base64-arraybuffer": "^0.1.5",
2018-08-12 21:19:17 +00:00
"classnames": "^2.2.6",
2018-10-06 06:09:29 +00:00
"es6-promise": "^4.2.5",
2017-05-12 08:51:37 +00:00
"fontfaceobserver": "^2.0.9",
2018-10-06 06:09:29 +00:00
"formik": "1.3.1",
2017-05-08 00:02:04 +00:00
"history": "4.5.1",
2018-10-06 06:09:29 +00:00
"immer": "^1.7.2",
"js-cookie": "^2.1.4",
2018-10-06 06:09:29 +00:00
"lodash": "^4.17.11",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
2017-02-16 02:55:50 +00:00
"react-redux": "^5.0.2",
2018-08-12 21:19:17 +00:00
"react-virtualized": "^9.20.1",
2018-04-17 19:53:41 +00:00
"redux": "^4.0.0",
2018-05-31 21:23:01 +00:00
"redux-thunk": "^2.3.0",
2018-10-06 06:09:29 +00:00
"reselect": "^4.0.0",
"url-pattern": "^1.0.3"
},
"scripts": {
2018-04-25 03:36:27 +00:00
"prettier": "prettier --write {.*,*.js,src/css/*.css,src/**/*.test.js}",
2018-04-05 23:46:22 +00:00
"prettier:all": "prettier --write {.*,*.js,src/**/*.js,src/css/*.css}",
"test": "jest",
"test:verbose": "jest --verbose",
2018-05-25 21:54:36 +00:00
"test:watch": "jest --watch",
"gen:install": "go get -u github.com/andyleap/gencode github.com/mailru/easyjson/... github.com/SlinSo/egon/cmd/egon",
"gen:binary": "gencode go -package storage -schema ../storage/storage.schema -unsafe",
"gen:json": "easyjson -all -lower_camel_case -omit_empty ../server/json.go ../server/index_data.go",
"gen:template": "egon -s -m ../server"
},
"jest": {
"moduleNameMapper": {
"^components(.*)$": "<rootDir>/src/js/components$1",
"^containers(.*)$": "<rootDir>/src/js/containers$1",
"^state(.*)$": "<rootDir>/src/js/state$1",
"^utils(.*)$": "<rootDir>/src/js/utils$1"
}
2015-01-17 01:37:21 +00:00
}
2015-02-17 00:27:02 +00:00
}