-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
79
80
81
82
83
{
"name": "@seasonjs/tools",
"version": "0.1.0",
"repository": "https://github.com/seasonjs/tools.git",
"author": "Cyberhan123",
"description": "react & js next generation toolset package",
"license": "MIT",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"fix:eslint": "eslint ./src --fix --ext .ts,.tsx",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=11.0.0 <15",
"npm": "<7"
},
"dependencies": {
"bowser": "^2.11.0",
"default-passive-events": "^2.0.0",
"file-saver": "^2.0.5",
"hoist-non-react-statics": "^3.3.2",
"localforage": "^1.10.0",
"nanoid": "^3.1.30",
"reflect-metadata": "^0.1.13",
"resize-observer-polyfill": "^1.5.1",
"@ahooksjs/use-request": "^2.8.13",
"xlsx": "^0.17.4"
},
"peerDependencies": {
"mobx": "^6.3.2",
"mobx-react-lite": "^3.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@types/file-saver": "^2.0.4",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"@umijs/fabric": "^2.8.1",
"@umijs/plugin-analytics": "^0.2.2",
"@umijs/test": "^3.5.20",
"cross-env": "^7.0.3",
"dumi": "^1.1.32",
"dumi-theme-default": "^1.1.15",
"father-build": "^1.20.4",
"gh-pages": "^3.2.3",
"lint-staged": "^12.0.2",
"mobx": "^6.3.7",
"mobx-react-lite": "^3.2.2",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"yorkie": "^2.0.0"
}
}