-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "dva-react-hook",
"version": "2.7.3",
"description": "React Hooks based, concise、lightweight framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --runInBand",
"build:dist": "npm --prefix webpack run build",
"release": "npm test && npm run build:dist && npm version patch"
},
"keywords": [
"react",
"hook",
"redux",
"reducer",
"state",
"dva",
"saga",
"offline",
"storage"
],
"author": {
"name": "jilin.jin",
"email": "jinjilin@hotmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jinjilynn/dva-react-hook.git"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/runtime": "^7.20.7",
"babel-jest": "^29.7.0",
"core-js": "^2.6.11",
"jest": "^29.7.0",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"react": "^16.8.6",
"use-sync-external-store": "^1.6.0"
},
"dependencies": {}
}