forked from gigapipehq/auth0js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.2 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
{
"name": "auth0-react-router",
"version": "1.0.0",
"description": "Library to use auth0-spa-sdk in React Router loaders and actions",
"homepage": "https://github.com/oriolcastro/auth0js#readme",
"bugs": {
"url": "https://github.com/oriolcastro/auth0js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oriolcastro/auth0js.git"
},
"license": "ISC",
"author": {
"name": "Oriol Castro Arnau",
"email": "uri@oriolcastro.me",
"url": "https://github.com/oriolcastro"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc && tsup --dts-resolve",
"build:watch": "tsup --watch",
"check": "tsc -noEmit",
"lint": "eslint --cache src",
"prepare": "is-ci || pnpm dlx simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --edit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --report-unused-disable-directives",
"prettier --write"
],
"package.json": "sort-package-json"
},
"dependencies": {
"@auth0/auth0-spa-js": "2.1.2",
"zustand": "4.4.1"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/react": "18.2.21",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"is-ci": "3.0.1",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"simple-git-hooks": "2.9.0",
"sort-package-json": "2.5.1",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": "^16.11.0 || ^17 || ^18",
"react-dom": "^16.11.0 || ^17 || ^18"
}
}