-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
56
57
58
59
60
61
{
"name": "@reactit/auth",
"description": "The ultimate token basted authentication solution for React",
"author": "Borut Svara <borut@svara.io>",
"contributors": [
"Matte Scorcia"
],
"license": "ISC",
"version": "0.1.5",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"dependencies": {
"@reactit/hooks": "^0.1.14"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.0",
"@types/react": "16.14.32",
"jest-environment-jsdom": "^29.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "^4.5.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.8.4"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svaraborut/reactit-auth.git"
},
"keywords": [
"React",
"Auth",
"Authentication",
"Security",
"Token",
"Jwt",
"Jsonwebtoken",
"Cookie"
],
"bugs": {
"url": "https://github.com/svaraborut/reactit-auth/issues"
},
"homepage": "https://github.com/svaraborut/reactit-auth#readme"
}