-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "use-remote-data",
"version": "0.5.1",
"description": "Promise handling for react. Principled, Boilerplate-free, Caching, Invalidating",
"author": "Øyvind Raddum Berg",
"homepage": "https://oyvindberg.github.io/use-remote-data/",
"keywords": [
"react",
"hooks",
"remote data",
"http",
"rest"
],
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "jest",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"publish-lib": "yarn test && rm -Rf lib && yarn build && yarn publish",
"publish-site": "cd site && USE_SSH=true GIT_USER=oyvindberg node_modules/.bin/docusaurus deploy"
},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^29.1.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"dependencies": {}
}