summaryrefslogtreecommitdiff
path: root/package.json
blob: 02eaab97013a70ac8b1fc3d2ff19913083b0e0af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
  "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 <[email protected]> (https://haishan.me)",
  "private": true,
  "license": "UNLICENSED",
  "dependencies": {
    "@babel/polyfill": "^7.2.3",
    "@babel/runtime": "^7.1.5",
    "@sentry/browser": "^4.4.2",
    "chart.js": "^2.7.3",
    "classnames": "^2.2.6",
    "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.7.0-alpha.2",
    "react-cache": "2.0.0-alpha.1",
    "react-dom": "16.7.0-alpha.2",
    "react-modal": "^3.8.1",
    "react-router-dom": "4.4.0-beta.4",
    "react-window": "^1.5.0",
    "redux": "^4.0.1",
    "redux-logger": "^3.0.6",
    "redux-thunk": "^2.2.0",
    "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-proposal-export-default-from": "^7.0.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
    "@babel/plugin-proposal-json-strings": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^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": "^1.0.0",
    "copy-webpack-plugin": "^4.6.0",
    "css-loader": "^2.0.1",
    "cssnano": "^4.1.7",
    "eslint": "^5.12.0",
    "eslint-import-resolver-webpack": "^0.10.1",
    "eslint-plugin-import": "2.14.0",
    "eslint-plugin-jest": "^22.0.0",
    "eslint-plugin-react": "7.11.1",
    "eslint-plugin-react-hooks": "^0.0.0",
    "file-loader": "^3.0.0",
    "html-webpack-plugin": "^3.2.0",
    "husky": "^1.3.0",
    "lint-staged": "^8.0.2",
    "mini-css-extract-plugin": "^0.5.0",
    "node-sass": "^4.10.0",
    "postcss-loader": "^3.0.0",
    "prettier": "^1.15.1",
    "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.1.0",
    "webpack": "^4.28.4",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.2.1",
    "webpack-dev-middleware": "^3.5.0",
    "webpack-hot-middleware": "^2.22.2"
  }
}