-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.68 KB
/
package.json
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
{
"name": "rin-re",
"private": true,
"scripts": {
"build": "react-scripts build",
"dev": "react-scripts start",
"analyze": "source-map-explorer ./build/static/js/main.*",
"test": "react-scripts test",
"lint": "eslint . && prettier --list-different \"./**/*.{js,json,css,md}\"",
"lint:fix": "eslint --fix . && prettier --write \"./**/*.{js,json,css,md}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"proxy": "https://bangumi.moe",
"dependencies": {
"axios": "^0.17.1",
"blueimp-md5": "^2.10.0",
"classnames": "^2.2.5",
"core-js": "^2.5.2",
"date-fns": "^1.29.0",
"dom4": "^1.8.5",
"draft-js": "^0.10.4",
"humps": "^2.0.1",
"i18next": "^10.2.1",
"i18next-browser-languagedetector": "^2.1.0",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.23",
"mobx": "^3.4.1",
"mobx-react": "^4.3.5",
"mobx-state-tree": "^1.2.1",
"normalize.css": "^7.0.0",
"pepjs": "^0.4.3",
"popper.js": "^1.13.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-i18next": "^7.1.1",
"react-icons": "^2.2.7",
"react-overlays": "github:lixiaoyan/react-overlays#prebuilt",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.17",
"react-transition-group": "^2.2.1",
"url-search-params": "^0.10.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1",
"source-map-explorer": "^1.5.0"
}
}