-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 760 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 760 Bytes
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
{
"name": "meta-cloud-api-express-simple",
"version": "1.0.1",
"private": true,
"type": "module",
"description": "Simple WhatsApp Bot using meta-cloud-api - Basic example for quick start",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "NODE_OPTIONS='--no-warnings' nodemon --watch \"src/*.ts\" --exec \"ts-node\" src/server.ts",
"build": "tsc"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.18.2",
"meta-cloud-api": "workspace:*"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.13.4",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}