-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-query-render-state",
"version": "1.0.16",
"description": "React Query Render State: This hook allows you to declaratively define components that will be rendered based on the data processing state.",
"main": "bin/index.js",
"module": "bin/index.esm.js",
"types": "bin/index.d.ts",
"scripts": {
"eslint": "eslint '{src,pages}/**/*.{ts,tsx}'",
"eslint:fix": "eslint '{src,pages}/**/*.{ts,tsx}' --fix",
"build": "rm -rf ./bin && webpack --config ./webpack.config.js",
"deploy": "npm run test && npm run build && npm publish --access=public",
"test": "jest --passWithNoTests",
"ts-check": "tsc --noEmit"
},
"author": "Yongwoo Jung<allen.jung.0110@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/stegano/react-query-render-state#readme",
"bugs": {
"url": "https://github.com/stegano/react-query-render-state/issues"
},
"keywords": [
"react",
"hooks",
"render",
"state",
"react-query",
"tanstack/react-query",
"react-render-state"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.2",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-unused-imports": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"react-hooks": "^1.0.1",
"ts-jest": "^29.3.2",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tanstack/react-query": "^5.74.4",
"react-render-state": "^2.1.2",
"react": "^19.1.0"
}
}