forked from react-auth-kit/react-auth-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.05 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.05 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-auth-kit",
"version": "1.6.0",
"description": "Authentication Library for React, which makes Token based auth very easy",
"source": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=8"
},
"scripts": {
"start": "rollup -cw",
"build": "run-s build:*",
"build:clean": "rimraf ./dist",
"build:dir": "mkdirp ./dist",
"build:build": "rollup -c",
"prepare": "run-s build && husky install",
"preversion": "run-s test",
"test": "run-s test:*",
"test:build": "run-s build",
"test:unit": "jest",
"test:lint": "eslint src/**/*.ts src/**/*.tsx --fix",
"test:unit:watch": "jest --watch"
},
"keywords": [
"react",
"auth",
"authentication",
"jwt",
"jsonwebtoken",
"token"
],
"author": {
"name": "Arkadip Bhattacharya",
"email": "in2arkadipb13@gmail.com",
"url": "https://www.arkadip.me"
},
"repository": {
"type": "git",
"url": "https://github.com/react-auth-kit/react-auth-kit"
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/js-cookie": "^3.0.0",
"@types/node": "^16.11.3",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.3",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-license": "^2.6.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.22.6",
"typescript": "^4.4.4",
"utility-types": "^3.10.0"
},
"dependencies": {
"@testing-library/react-hooks": "^7.0.2",
"js-cookie": "^3.0.1",
"react": ">=16.8.0",
"react-router-dom": "^5.3.0"
},
"peerDependencies": {
"js-cookie": "^3.0.1",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-router-dom": "^5.3.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,json,js}": "eslint --cache --fix"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}