-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 KB
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
{
"name": "@mzaleski/use-send-code",
"version": "1.0.0",
"description": "A React (NextJS-oriented) hook that facilitates operations such as sending one-time codes.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prettier": "./node_modules/.bin/prettier --write 'src/**/*.{ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxzaleski/useSendCode.git"
},
"keywords": [
"react-hook",
"nextjs",
"one-time-code",
"send-code"
],
"author": "Maximilien Zaleski",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxzaleski/useSendCode/issues"
},
"homepage": "https://github.com/maxzaleski/useSendCode#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.15",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^28.1.3",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"react-testing-library": "^8.0.1",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@mzaleski/use-timer": "^1.2.1"
}
}