-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "apicraft",
"version": "1.3.4",
"description": "A CLI tool to generate API files and folder structure",
"main": "bin/index.js",
"bin": {
"apicraft": "bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npm run init && nodemon ./src/app.ts",
"start": "node build/app.js",
"init": "ts-node ./src/configs/init.ts",
"build": "npx tsc"
},
"keywords": [
"cli",
"api",
"generator",
"mufazmi",
"UmairFarooqui"
],
"author": "Umair Farooqui",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.9",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.10",
"@types/nodemailer": "^6.4.9",
"@types/pdfkit": "^0.13.2",
"rimraf": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mufazmi/apicraft.git"
},
"bugs": {
"url": "https://github.com/mufazmi/apicraft/issues"
},
"homepage": "https://github.com/mufazmi/apicraft#readme",
"dependencies": {
"case": "^1.6.3",
"pluralize": "^8.0.0",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"google-auth-library": "^7.10.2",
"handlebars": "^4.7.8",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"mongoose": "^7.4.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.5",
"pdfkit": "^0.13.0",
"sharp": "^0.32.6",
"slugify": "^1.6.6"
}
}