-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
60
61
62
63
64
65
{
"name": "special-hooks",
"version": "0.5.0",
"keywords": [
"hooks",
"special",
"special-hooks",
"react",
"typescript"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"description": "A library for creating special hooks",
"author": "Shoury Sharma",
"repository": {
"type": "git",
"url": "https://github.com/galanteria01/special-hooks.git"
},
"license": "Apache",
"dependencies": {
"copy-to-clipboard": "^3.3.1"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"scripts": {
"test": "jest --watchAll",
"build": "rollup -c && tsc -d --emitDeclarationOnly --noEmit false --declarationDir dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.22.15",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@rollup/plugin-url": "^7.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.39",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3",
"web-vitals": "^2.1.4"
}
}