-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.36 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
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
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "next-auth-mui",
"description": "Sign-in dialog for NextAuth built with MUI and React. Detects configured OAuth and Email providers and renders buttons or input fields for each respectively. Fully themeable, extensible and customizable to support custom credential flows.",
"version": "1.3.0",
"author": "Tim Mikeladze <tim.mikeladze@gmail.com>",
"license": "MIT",
"keywords": [
"next-auth",
"mui",
"next",
"material-ui",
"auth",
"oauth",
"email sign-in",
"sign-in dialog"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/next-auth-mui"
},
"scripts": {
"dev": "concurrently \"npm run build -- --watch\" \"npm run storybook\"",
"build": "tsup",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"{src,tests}/**/*.+(ts|js|tsx)\"",
"lint:fix": "npm run lint -- --fix",
"commit": "cz",
"storybook": "start-storybook -p 6006 --quiet",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "release --"
},
"tsup": {
"entry": [
"src/index.tsx"
],
"treeshake": true,
"sourcemap": true,
"minify": true,
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
],
"external": [
"react"
]
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"lint-staged": {
"./{src,tests}/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@iconify/react": "3.2.2"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@commitlint/cli": "17.0.1",
"@commitlint/config-conventional": "17.0.0",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@mui/material": "5.8.1",
"@storybook/addon-actions": "6.5.6",
"@storybook/addon-essentials": "6.5.6",
"@storybook/addon-interactions": "6.5.6",
"@storybook/addon-links": "6.5.6",
"@storybook/builder-webpack5": "6.5.6",
"@storybook/manager-webpack5": "6.5.6",
"@storybook/react": "6.5.6",
"@storybook/storybook-deployer": "2.8.11",
"@storybook/testing-library": "0.0.11",
"@types/node": "17.0.36",
"@types/react": "18.0.11",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"babel-loader": "8.2.5",
"commitizen": "4.2.4",
"concurrently": "7.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-storybook": "0.5.12",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"husky": "8.0.1",
"lint-staged": "12.4.3",
"next-auth": "4.3.4",
"react": "18.1.0",
"react-dom": "18.1.0",
"release": "6.3.1",
"storybook-addon-mock": "2.4.0",
"tsup": "6.0.1",
"typescript": "4.7.2"
},
"peerDependencies": {
"@mui/material": ">=5",
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"react": ">=17",
"react-dom": ">=17",
"next-auth": ">=4"
}
}