-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "sessionize-auth",
"version": "0.0.10",
"description": "A flexible session management library for React, Next.js, Angular, and React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Joao Afonso Katombela",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Katumbela/sessionize-auth.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/Katumbela/sessionize-auth/issues"
},
"homepage": "https://github.com/Katumbela/sessionize-auth#readme",
"dependencies": {
"js-cookie": "^3.0.5",
"react": "^19.0.0",
"react-router-dom": "^7.1.5",
"text-encoding": "^0.7.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/react": "^19.0.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5"
}
}