generated from SergioNR/express-js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "uxcaptain-research-platform",
"engines": {
"node": "24.x"
},
"description": "Back-end using an ExpressJS Server for User Research Platform",
"main": "app.js",
"private": true,
"version": "1.0.0",
"type": "module",
"keywords": [],
"license": "Proprietary",
"author": "Sergio Navarro Redondo",
"scripts": {
"start": "node ./server/app.js",
"start:local": "node --watch --env-file=.env ./server/app.js",
"start:docker": "docker compose up --build --watch",
"stripe:listen": "stripe listen --forward-to localhost:3000/webhooks/v1/stripe",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.936.0",
"@aws-sdk/s3-request-presigner": "^3.936.0",
"@getbrevo/brevo": "^3.0.1",
"@prisma/client": "^6.19.0",
"@quixo3/prisma-session-store": "^3.1.13",
"axios": "^1.13.2",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cron": "^4.3.4",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"express-slow-down": "^3.0.1",
"express-validator": "^7.3.1",
"form-data": "^4.0.5",
"helmet": "^8.1.0",
"npm": "^11.6.3",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"posthog-node": "^5.13.2",
"prisma": "^6.19.0",
"stripe": "^20.0.0"
},
"devDependencies": {
"@types/node": "^24.0.11",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^30.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uxcaptain/server"
}
}