-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "bento-auth-js",
"version": "7.1.0",
"description": "Authentication library for web applications of Bento-Platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepublishOnly": "npm run build",
"lint": "npx eslint src",
"lint:fix": "npx eslint src --fix",
"buildpack": "rm -f ./packs/*.tgz && tsc && npm pack --pack-destination ./packs",
"prepare": "husky"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bento-platform/bento_auth_js.git"
},
"keywords": [
"Bento",
"Auth"
],
"author": "Sanjeev Lakhwani",
"license": "MIT",
"bugs": {
"url": "https://github.com/bento-platform/bento_auth_js/issues"
},
"homepage": "https://github.com/bento-platform/bento_auth_js#readme",
"peerDependencies": {
"@reduxjs/toolkit": "^1.9.7",
"react": ">=18.0.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.21.1",
"redux": "^4.2.0"
},
"dependencies": {
"jose": "^5.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@semantic-release/git": "^10.0.1",
"@types/react": "~18.3.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react-redux": "^8.1.3",
"react-router-dom": "^6.21.1",
"redux": "^4.2.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.11.0"
}
}