-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "chatbotwit",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"minify": "npx terser dist/server.js --output dist/server.min.js && npx terser dist/index.js --output dist/index.min.js",
"build": "npx tsc && pnpm minify",
"dev": "bottender dev ",
"log": "pnpm dev -- --console",
"start-local": "bottender start",
"start": "cross-env NODE_ENV=production node dist/server.min.js",
"ngrok": "ngrok http 5000",
"set-profil": "npx bottender messenger profile set",
"get-profil": "npx bottender messenger profile get"
},
"dependencies": {
"body-parser": "^1.20.3",
"bottender": "^1.5.5",
"cross-env": "^7.0.3",
"express": "^4.21.2",
"node-wit": "^6.6.0",
"nodemon": "^3.1.9",
"terser": "^5.39.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"@types/node-wit": "^6.1.0",
"dotenv": "^16.4.7",
"ngrok": "5.0.0-beta.2",
"punycode": "^2.3.1",
"typescript": "^5.8.2",
"vercel": "^41.4.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"ngrok"
]
}
}