-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "@thpuskar/react-hooks",
"version": "1.0.0",
"description": "react custom hooks collection",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "jest"
},
"author": "Puskar Adhikari <[email protected]>",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"add": "^2.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"or": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.2.5",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.7.3",
"yarn": "^1.22.19"
},
"peerDependencies": {
"react": "^18.1.0"
},
"files": [
"/lib"
],
"dependencies": {
"@testing-library/react-hooks": "^8.0.1"
}
}