-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "frontend-essentials",
"version": "7.0.0",
"description": "A set of useful functions, components and hooks.",
"repository": {
"type": "git",
"url": "git+https://github.com/theninthsky/frontend-essentials.git"
},
"homepage": "https://github.com/theninthsky/frontend-essentials.git#readme",
"author": "Almog Gabay",
"license": "MIT",
"files": [
"cjs",
"esm"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"prepublishOnly": "prepublish.sh"
},
"dependencies": {
"axios": "^1.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.181",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"ts-jest": "^29.0.3",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
}
}