-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "oneclickagent",
"version": "1.0.0",
"description": "WhatsApp-first AI business automation platform for Indian small businesses",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:push": "npx prisma db push",
"postinstall": "npx prisma generate",
"db:seed": "node prisma/seed.js",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"keywords": ["whatsapp", "ai", "automation", "india", "sme"],
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"dotenv": "^16.3.1",
"axios": "^1.6.5",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"@prisma/client": "^5.8.0",
"form-data": "^4.0.0",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"xlsx": "^0.18.5",
"mammoth": "^1.6.0",
"node-cron": "^3.0.3",
"googleapis": "^130.0.0",
"razorpay": "^2.9.2",
"stripe": "^14.12.0",
"winston": "^3.11.0",
"express-rate-limit": "^7.1.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"prisma": "^5.8.0",
"nodemon": "^3.0.2"
}
}