-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.55 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
51
{
"name": "use-remote-data",
"version": "0.9.0",
"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"
],
"files": [
"lib/src"
],
"module": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "jest",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"publish-lib": "npm test && rm -Rf lib && npm run build && npm publish",
"publish-site": "cd site && USE_SSH=true GIT_USER=oyvindberg npx docusaurus deploy"
},
"peerDependencies": {
"react": ">=17.0.2 <20.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.34.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"dependencies": {}
}