-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "use-transition-render",
"version": "1.0.0",
"description": "Transition Render Hook(useTransitionRender): This hook allows you to declaratively define components that will be rendered based on the data processing state.",
"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<[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stegano/use-transition-render#readme",
"bugs": {
"url": "https://github.com/stegano/use-transition-render/issues"
},
"keywords": [
"react",
"hooks",
"render",
"state",
"useTransition",
"suspense",
"redux",
"recoil"
],
"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": {
"react": "^18.2.0"
}
}