-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "react-tidy",
"version": "1.3.7",
"description": "A collection of atomic, independent, typed, tested and documented React custom hooks",
"author": "Amine Ben hammou (@webNeat)",
"license": "MIT",
"repository": "webNeat/react-tidy",
"homepage": "https://github.com/webNeat/react-tidy#react-tidy",
"keywords": [
"react",
"utility-library",
"react-hooks",
"custom-hooks",
"state-management"
],
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/react-tidy.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "parcel watch",
"build": "NODE_ENV=production parcel build",
"test": "jest",
"test-coverage": "jest --coverage"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}