-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 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
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
{
"name": "email-armor",
"version": "1.0.0",
"description": "Custom email and password authentication with two-step verification via Nodemailer.",
"main": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"scripts": {
"init": "./lib/stubs/initialSetup.js",
"clean": "rimraf lib/",
"copy-files": "copyfiles -u 1 src/**/*.html lib/src",
"lint": "npx eslint .",
"build": "cls && npm run clean && npm rum lint && tsc && node lib/index.js && npm run copy-files",
"test": "cls && npm run build && cd ./test && nodemon index.js",
"publishBeta": "npm run build && npm publish --tag beta",
"readme": "git add . && git commit -m \"README.md updated\" && git push",
"link": "npm run build && cd ./test && npm link email-armor",
"npx": "npm run build && cd ./test && npx email-armor init",
"unpublish": "npm unpublish [email protected]",
"devSync": "git checkout v1.0.0 && git reset --hard origin/main && git push --force && git pull origin main && git push",
"mainSync": "git checkout main && git pull origin v1.0.0 && git push && git checkout v1.0.0",
"devSoftReset": "git checkout v1.0.0 && git reset --soft HEAD~2 && git commit -m \"Final release of v1.0.0 with complete features and fixes\" && git push --force",
"mainSoftReset": "git checkout main && git reset --soft HEAD~2 && git commit -m \"MicrosoftClarity code updated\" && git push --force && git checkout v1.0.0 && git reset --hard origin/main && git push --force",
"devHardReset": "git checkout v1.0.0 && git reset --hard origin/main && git push --force && git pull origin main && git push",
"mainHardReset": "git checkout main && git reset --hard origin/v1.0.0 && git push --force && git checkout v1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Capta1nRaj/email-armor.git"
},
"author": "Priyal \"Capta1n\" Raj",
"license": "MIT",
"bugs": {
"url": "https://github.com/Capta1nRaj/email-armor/issues"
},
"homepage": "https://github.com/Capta1nRaj/email-armor#readme",
"dependencies": {
"@types/dotenv": "^8.2.0",
"bcrypt": "^5.1.1",
"connect2mongodb": "^1.1.37",
"dotenv": "^16.3.1",
"inquirer": "^9.2.12",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.0",
"nodemailer": "^6.9.13",
"randomstring": "^1.3.0"
},
"keywords": [
"express",
"db",
"mongo",
"mongodb",
"mognoose",
"dotenv",
"database",
"react",
"nodejs",
"oauth",
"jwt",
"authentication",
"nextjs",
"backend",
"nextauth",
"email-armor",
"Nodemailer",
"nodemailer"
],
"bin": {
"initialSetup": "./lib/stubs/initialSetup.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/inquirer": "^9.0.7",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"@types/randomstring": "^1.1.11",
"@types/react": "^18.2.47",
"copyfiles": "^2.4.1",
"eslint": "^8.53.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}