yacd/package.json
2019-03-31 00:21:10 +08:00

98 lines
2.9 KiB
JSON

{
"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",
"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}": [
"prettier --single-quote --write",
"git add"
]
},
"keywords": [
"react"
],
"author": "Haishan <haishanhan@gmail.com> (https://haishan.me)",
"private": true,
"license": "UNLICENSED",
"dependencies": {
"@babel/runtime": "^7.1.5",
"@hsjs/react-cache": "0.0.0-alpha.aa94237",
"@sentry/browser": "^4.4.2",
"chart.js": "^2.7.3",
"classnames": "^2.2.6",
"core-js": "^3.0.0",
"history": "^4.7.2",
"invariant": "^2.2.4",
"lodash-es": "^4.17.11",
"memoize-one": "^5.0.0",
"modern-normalize": "^0.5.0",
"prop-types": "^15.5.10",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-modal": "^3.8.1",
"react-router-dom": "^5.0.0",
"react-window": "^1.5.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.13.2",
"reselect": "^4.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.13.0",
"eslint-config-react-app": "^3.0.8",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.0",
"lint-staged": "^8.1.3",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"react-hot-loader": "^4.6.3",
"sass-loader": "^7.0.1",
"style-loader": "^0.23.0",
"svg-sprite-loader": "^4.1.2",
"terser-webpack-plugin": "^1.2.2",
"webpack": "^4.29.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.5.2",
"webpack-hot-middleware": "^2.22.2"
}
}