-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "location-social-platform",
"version": "1.0.0",
"description": "Production-ready location-based social networking platform",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:seed": "node prisma/seed.js"
},
"keywords": [
"saas",
"boilerplate",
"prisma",
"express",
"react-native",
"stripe",
"postgis"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.7.0",
"@aws-sdk/client-s3": "^3.470.0",
"@aws-sdk/s3-request-presigner": "^3.470.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",
"jsonwebtoken": "^9.0.2",
"otplib": "^12.0.1",
"pino": "^8.17.2",
"prom-client": "^15.1.0",
"socket.io": "^4.6.0",
"stripe": "^14.10.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"prisma": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudygetty-ai/foundry-stack.git"
}
}