-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.51 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.51 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
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
{
"name": "lead-magnet-platform",
"version": "1.0.0",
"description": "Lead-magnet landing page + lightweight file delivery platform for creators",
"main": "src/app.js",
"type": "module",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"db:migrate": "npx prisma migrate dev",
"db:seed": "node scripts/seed.js",
"db:reset": "npx prisma migrate reset --force",
"db:studio": "npx prisma studio",
"build": "node scripts/build.js"
},
"keywords": [
"lead-magnet",
"file-delivery",
"landing-page",
"email-capture",
"analytics"
],
"author": "Lead Magnet Platform Team",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.454.0",
"@aws-sdk/s3-request-presigner": "^3.454.0",
"@prisma/client": "^5.6.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"jspdf": "^3.0.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.7",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"redis": "^4.6.10",
"sharp": "^0.32.6",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@types/jest": "^29.5.8",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prisma": "^5.6.0",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.js",
"!src/app.js",
"!**/node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "18"
}
}
]
]
}
}