-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 769 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 769 Bytes
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
{
"private": true,
"scripts": {
"start": "umi dev",
"build": "umi build",
"postinstall": "umi generate tmp",
"prettier": "prettier --write **/*.{js,jsx,tsx,ts,less,md,json}",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@umijs/preset-react": "1.8.7",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"spark-md5": "^3.0.1",
"umi": "3.4.20",
"yorkie": "2.0.0"
}
}