-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.61 KB
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
{
"name": "greycodejs",
"version": "0.0.2",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "node scripts/framework-smoke.js",
"test:framework": "node scripts/framework-smoke.js",
"cli": "node bin/cli.js",
"db:check": "node scripts/troubleshoot-db.js"
},
"bin": {
"greycodejs": "./bin/cli.js"
},
"keywords": [
"express",
"framework",
"mvc",
"orm",
"sequelize",
"cli",
"scaffolding"
],
"author": "Kudzai Munyama",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^9.3.0",
"@greycode/env_init": "^1.0.5",
"@greycode/gitignore_init": "^0.0.2",
"@prisma/client": "^6.19.0",
"@sendgrid/mail": "^8.1.6",
"aws-sdk": "^2.1692.0",
"bcryptjs": "^2.4.3",
"bull": "^4.16.5",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.2.1",
"faker": "^6.6.6",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"joi": "^18.2.3",
"jsonwebtoken": "^9.0.2",
"mailgun-js": "^0.22.0",
"mongoose": "^8.19.3",
"morgan": "^1.10.0",
"multer": "^2.2.0",
"mysql2": "^3.11.5",
"nodemailer": "^7.0.10",
"sequelize": "^6.37.5",
"sharp": "^0.35.2",
"umzug": "^3.8.2",
"validator": "^13.12.0",
"winston": "^3.17.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"nodemon": "^3.1.9"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}