forked from react-auth-kit/react-auth-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-auth-kit",
"version": "1.4.3",
"description": "Authentication Library for React",
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "rollup -cw",
"build": "rollup -c",
"prepare": "run-s build",
"preversion": "run-s test",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:unit": "jest",
"test:lint": "eslint src/**/*.ts src/**/*.tsx",
"fix": "eslint src/**/*.ts src/**/*.tsx --fix"
},
"keywords": [
"react",
"auth",
"authentication",
"jwt",
"jsonwebtoken"
],
"author": {
"name": "Arkadip Bhattacharya",
"email": "[email protected]",
"url": "https://www.arkadip.co"
},
"repository": {
"type": "git",
"url": "https://github.com/react-auth-kit/react-auth-kit"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@types/jest": "^26.0.10",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.6.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-react": "^7.20.6",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"react-dom": "^17.0.1",
"rollup": "^2.26.6",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.3.0",
"typedoc": "^0.20.12",
"typescript": "^4.0.2",
"utility-types": "^3.10.0"
},
"dependencies": {
"js-cookie": "^2.2.1",
"react": ">=16",
"react-router-dom": "^5.2.0"
},
"peerDependencies": {
"js-cookie": "^2.2.1",
"react": ">=16",
"react-router-dom": "^5.2.0"
}
}