yacd/package.json
2019-10-14 22:41:00 +08:00

104 lines
3 KiB
JSON

{
"name": "yacd",
"version": "0.0.4",
"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",
"build": "NODE_ENV=production webpack -p --progress",
"pretty": "prettier --single-quote --write 'src/**/*.{js,scss}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,scss,css,md}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"keywords": [
"react"
],
"author": "Haishan <haishanhan@gmail.com> (https://haishan.me)",
"private": true,
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@hot-loader/react-dom": "^16.9.0",
"@hsjs/react-cache": "0.0.0-alpha.aa94237",
"@sentry/browser": "^5.7.0",
"chart.js": "^2.7.3",
"classnames": "^2.2.6",
"core-js": "^3.3.2",
"history": "^4.7.2",
"invariant": "^2.2.4",
"lodash-es": "^4.17.14",
"memoize-one": "^5.1.1",
"modern-normalize": "^0.5.0",
"prop-types": "^15.5.10",
"react": "^16.10.1",
"react-dom": "^16.10.2",
"react-modal": "^3.10.1",
"react-router-dom": "^5.1.2",
"react-window": "^1.8.5",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.13.2",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"cssnano": "^4.1.7",
"eslint": "^6.5.1",
"eslint-config-react-app": "^5.0.2",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.1",
"mini-css-extract-plugin": "^0.8.0",
"postcss-extend-rule": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"prettier": "^1.17.1",
"react-hot-loader": "^4.12.14",
"style-loader": "^1.0.0",
"svg-sprite-loader": "^4.1.2",
"terser-webpack-plugin": "^2.1.3",
"webpack": "^4.41.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpack-cli": "^3.3.8",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.22.2"
}
}