-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "react-suspense-render-hook",
"version": "2.2.10",
"description": "React Suspense Render Hook: This hook allows you to declaratively define components that render when asynchronous data is processed.",
"main": "bin/index.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",
"ts-check": "tsc --noEmit"
},
"author": "Yongwoo Jung<stegano@naver.com>",
"license": "MIT",
"homepage": "https://github.com/stegano/react-suspense-render-hook#readme",
"bugs": {
"url": "https://github.com/stegano/react-suspense-render-hook/issues"
},
"keywords": [
"react",
"hooks",
"render",
"suspense",
"loading",
"indicator",
"async",
"use"
],
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/react": "^18.2.21",
"@types/react-test-renderer": "^18.0.5",
"@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",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react-hooks": "^1.0.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"react": "^18.2.0"
}
}