-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "react-type-utils",
"version": "1.0.4",
"description": "A TypeScript library for common type safety utilities in React applications.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/dfiredeveloper/react-ts-utils"
},
"jest": {
"testEnvironment": "jsdom"
},
"keywords": [
"typescript",
"react",
"library",
"utilities",
"type safety"
],
"author": "Ilemona Achimugu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-jest": "^29.7.0",
"jest": "^26.6.3",
"jsdom": "^24.1.0",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5"
},
"dependencies": {
"punycode": "^2.3.1"
}
}