-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "blog",
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"test": "umi test",
"eslint": "eslint --ext .js src",
"tslint": "tslint \"src/**/*.ts\" \"src/**/*.tsx\"",
"precommit": "lint-staged"
},
"dependencies": {
"axios": "^0.19.0",
"braft-editor": "^2.2.8",
"braft-extensions": "0.0.18",
"draft-js-prism": "^1.0.6",
"dva": "^2.6.0-beta.7",
"prismjs": "^1.17.1",
"react": "^16.8.6",
"react-color": "^2.17.0",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"socket.io-client": "^2.2.0",
"url-search-params": "^1.1.0"
},
"devDependencies": {
"@material-ui/core": "^3.9.1",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/react-test-renderer": "^16.8.3",
"antd": "^3.20.7",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-umi": "^1.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"react-test-renderer": "^16.7.0",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"umi": "^2.12.8",
"umi-plugin-react": "^1.9.14"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}