-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@io84team/umi-plugin-oauth2-client",
"main": "lib/index.js",
"description": "OAuth2 Client",
"version": "1.0.5",
"authors": {
"name": "aben",
"email": "[email protected]"
},
"repository": "io84team/umi-plugin-oauth2-client",
"scripts": {
"start": "cross-env APP_ROOT=example umi dev",
"build": "father-build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
],
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {},
"peerDependencies": {
"@umijs/plugin-initial-state": "^2.3.0",
"@umijs/plugin-model": "^2.5.7",
"ahooks": "^2.10.5",
"client-oauth2": "^4.3.3",
"pkce": "^1.0.0-beta2",
"umi": "3.x"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@umijs/fabric": "^2.6.2",
"@umijs/plugin-initial-state": "^2.3.0",
"@umijs/plugin-model": "^2.5.7",
"@umijs/test": "^3.0.10",
"@umijs/test-utils": "^1.0.0",
"ahooks": "^2.10.5",
"babel-plugin-import": "^1.13.3",
"body-parser": "^1.18.2",
"client-oauth2": "^4.3.3",
"cross-env": "^6.0.3",
"express": "^4.15.3",
"father-build": "^1.17.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"pify": "^5.0.0",
"pkce": "^1.0.0-beta2",
"prettier": "2.3.0",
"puppeteer": "^1.20.0",
"query-string": "^6.11.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.9.0",
"test-umi-plugin": "^0.1.0",
"typescript": "^4.3.2",
"umi": "^3.1.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"lib"
]
}