-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 896 Bytes
/
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
{
"name": "spdev-hooks",
"version": "0.1.0",
"description": "A collection of useful React hooks",
"license": "MIT",
"author": "Sam Preston <https://samprestondev.vercel.app/>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.61",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "~18.0.0",
"react-dom": "~18.0.0"
},
"scripts": {
"predeploy": "rollup --config",
"deploy": "npm publish"
}
}