2018-10-20 20:32:02 +08:00
|
|
|
{
|
|
|
|
"name": "yacd",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Yet another Clash dashboard",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint src",
|
|
|
|
"dll": "webpack --config webpack.dll.config.js",
|
|
|
|
"start": "NODE_ENV=development node server.js",
|
2019-01-05 23:03:41 +08:00
|
|
|
"build": "NODE_ENV=production webpack -p --progress",
|
2018-10-20 20:32:02 +08:00
|
|
|
"pretty": "prettier --single-quote --write 'src/**/*.{js,scss}'"
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2019-05-27 23:03:21 +08:00
|
|
|
"*.{js,scss,css,md}": ["prettier --single-quote --write", "git add"]
|
2018-10-20 20:32:02 +08:00
|
|
|
},
|
2019-05-27 23:03:21 +08:00
|
|
|
"browserslist": [">0.25%", "not ie 11", "not op_mini all"],
|
|
|
|
"keywords": ["react"],
|
2018-12-29 13:09:42 +08:00
|
|
|
"author": "Haishan <haishanhan@gmail.com> (https://haishan.me)",
|
2018-10-20 20:32:02 +08:00
|
|
|
"private": true,
|
|
|
|
"license": "UNLICENSED",
|
|
|
|
"dependencies": {
|
2019-06-22 00:10:21 +08:00
|
|
|
"@babel/runtime": "^7.5.0",
|
2019-05-15 00:26:02 +08:00
|
|
|
"@hot-loader/react-dom": "^16.8.6",
|
2019-01-18 23:51:30 +08:00
|
|
|
"@hsjs/react-cache": "0.0.0-alpha.aa94237",
|
2019-06-22 00:10:21 +08:00
|
|
|
"@sentry/browser": "^5.5.0",
|
2018-10-20 20:32:02 +08:00
|
|
|
"chart.js": "^2.7.3",
|
|
|
|
"classnames": "^2.2.6",
|
2019-06-14 22:07:09 +08:00
|
|
|
"core-js": "^3.1.4",
|
2018-10-20 20:32:02 +08:00
|
|
|
"history": "^4.7.2",
|
2019-01-04 00:22:51 +08:00
|
|
|
"invariant": "^2.2.4",
|
2019-01-05 00:45:33 +08:00
|
|
|
"lodash-es": "^4.17.11",
|
2018-12-18 21:26:08 +08:00
|
|
|
"memoize-one": "^5.0.0",
|
2018-10-20 20:32:02 +08:00
|
|
|
"modern-normalize": "^0.5.0",
|
|
|
|
"prop-types": "^15.5.10",
|
2019-03-12 23:48:37 +08:00
|
|
|
"react": "^16.8.4",
|
|
|
|
"react-dom": "^16.8.4",
|
2019-06-22 00:10:21 +08:00
|
|
|
"react-modal": "^3.8.2",
|
2019-06-05 10:50:55 +08:00
|
|
|
"react-router-dom": "^5.0.1",
|
2019-06-22 00:10:21 +08:00
|
|
|
"react-window": "^1.8.4",
|
2018-10-20 20:32:02 +08:00
|
|
|
"redux": "^4.0.1",
|
|
|
|
"redux-logger": "^3.0.6",
|
|
|
|
"redux-thunk": "^2.2.0",
|
2019-03-12 23:48:37 +08:00
|
|
|
"regenerator-runtime": "^0.13.2",
|
2019-05-14 00:30:36 +08:00
|
|
|
"reselect": "^4.0.0"
|
2018-10-20 20:32:02 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-06-22 00:10:21 +08:00
|
|
|
"@babel/core": "^7.5.0",
|
2019-07-06 17:40:46 +08:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.5.0",
|
2019-06-22 00:10:21 +08:00
|
|
|
"@babel/plugin-proposal-do-expressions": "^7.5.0",
|
2018-10-20 20:32:02 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
2019-06-22 00:10:21 +08:00
|
|
|
"@babel/plugin-transform-runtime": "^7.5.0",
|
2019-07-06 17:40:46 +08:00
|
|
|
"@babel/preset-env": "^7.5.0",
|
2018-10-20 20:32:02 +08:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-05-27 23:03:21 +08:00
|
|
|
"autoprefixer": "^9.6.0",
|
2019-06-14 22:07:09 +08:00
|
|
|
"babel-eslint": "^10.0.2",
|
2019-01-02 23:17:19 +08:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-05-27 23:03:21 +08:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2019-02-25 23:48:11 +08:00
|
|
|
"copy-webpack-plugin": "^5.0.0",
|
2019-06-05 10:50:55 +08:00
|
|
|
"css-loader": "^3.0.0",
|
2018-10-23 17:47:26 +08:00
|
|
|
"cssnano": "^4.1.7",
|
2019-01-18 23:51:30 +08:00
|
|
|
"eslint": "^5.13.0",
|
2019-05-14 00:30:36 +08:00
|
|
|
"eslint-config-react-app": "^4.0.1",
|
2019-01-18 23:51:30 +08:00
|
|
|
"eslint-import-resolver-webpack": "^0.11.0",
|
2019-06-22 00:10:21 +08:00
|
|
|
"eslint-plugin-flowtype": "^3.10.4",
|
|
|
|
"eslint-plugin-import": "^2.18.0",
|
|
|
|
"eslint-plugin-jest": "^22.7.2",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
|
|
"eslint-plugin-react": "^7.14.2",
|
|
|
|
"eslint-plugin-react-hooks": "^1.6.1",
|
2019-06-05 10:50:55 +08:00
|
|
|
"file-loader": "^4.0.0",
|
2018-10-20 20:32:02 +08:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2019-06-22 00:10:21 +08:00
|
|
|
"husky": "^3.0.0",
|
|
|
|
"lint-staged": "^9.0.2",
|
2019-05-27 23:03:21 +08:00
|
|
|
"mini-css-extract-plugin": "^0.7.0",
|
2019-04-14 22:56:14 +08:00
|
|
|
"postcss-extend-rule": "^2.0.0",
|
|
|
|
"postcss-import": "^12.0.1",
|
2018-10-20 20:32:02 +08:00
|
|
|
"postcss-loader": "^3.0.0",
|
2019-04-14 22:56:14 +08:00
|
|
|
"postcss-nested": "^4.1.2",
|
2019-05-14 00:30:36 +08:00
|
|
|
"prettier": "^1.17.1",
|
2019-06-22 00:10:21 +08:00
|
|
|
"react-hot-loader": "^4.12.3",
|
2018-10-20 20:32:02 +08:00
|
|
|
"style-loader": "^0.23.0",
|
|
|
|
"svg-sprite-loader": "^4.1.2",
|
2019-01-18 23:51:30 +08:00
|
|
|
"terser-webpack-plugin": "^1.2.2",
|
2019-06-22 00:10:21 +08:00
|
|
|
"webpack": "^4.35.2",
|
2018-10-20 20:32:02 +08:00
|
|
|
"webpack-bundle-analyzer": "^3.0.3",
|
2019-06-22 00:10:21 +08:00
|
|
|
"webpack-cli": "^3.3.5",
|
2019-01-18 23:51:30 +08:00
|
|
|
"webpack-dev-middleware": "^3.5.2",
|
2018-10-20 20:32:02 +08:00
|
|
|
"webpack-hot-middleware": "^2.22.2"
|
|
|
|
}
|
|
|
|
}
|