-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"test": "umi test",
"lint": "eslint --ext .js src mock tests",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.12.0",
"eslint-config-umi": "^0.1.5",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"umi": "^2.4.2",
"umi-plugin-react": "^1.4.0",
"webpack-chain": "^5.0.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@material-ui/core": "^3.8.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"codemirror": "^5.43.0",
"draft-js": "^0.10.5",
"draft-js-emoji-plugin": "^2.1.1",
"draft-js-markdown-shortcuts-plugin": "^0.5.0",
"draft-js-mention-plugin": "^3.1.3",
"draft-js-plugins-editor": "^2.1.1",
"emoji-picker-react": "^2.1.1",
"jsonapi-normalizer": "^2.0.1",
"lodash": "^4.17.11",
"material-ui-chip-input": "^1.0.0-beta.14",
"material-ui-image": "^3.1.0",
"notistack": "^0.4.1",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-codemirror": "^1.0.0",
"react-emoji": "^0.5.0",
"react-markdown": "^4.0.6",
"react-media": "^1.9.2",
"react-select": "^2.3.0",
"react-simplemde-editor": "^4.0.0",
"react-swipeable-views": "^0.13.0",
"react-syntax-highlighter": "^10.1.2",
"react-transition-group": "^2.5.2"
}
}