-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "auth-em-form",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"assets",
"dist"
],
"version": "1.0.1",
"description": "auth-em-form is a versatile React component for user authentication, supporting sign-in, sign-up, validation, encryption, and social login integration",
"main": "index.ts",
"scripts": {
"build": "rimraf dist && tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ethern-Myth/auth-em-form.git"
},
"keywords": [
"authentication",
"react",
"login",
"encryption",
"intergration",
"component"
],
"author": "Ethern Myth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ethern-Myth/auth-em-form/issues"
},
"homepage": "https://github.com/Ethern-Myth/auth-em-form#readme",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.3",
"formik": "^2.4.5",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"yup": "^1.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"jsdom": "^24.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}