-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1013 Bytes
/
package.json
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
{
"name": "cakapsihat",
"version": "1.0.0",
"description": "A health and fitness related chatbot",
"main": "index.js",
"engines": {
"node": "16.15.1",
"npm": "8.11.0"
},
"scripts": {
"start": "node index.js",
"backend": "nodemon index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Md Asifullah",
"license": "ISC",
"dependencies": {
"@google-cloud/dialogflow": "^5.4.0",
"actions-on-google": "^2.6.0",
"body-parser": "^1.20.1",
"dialogflow": "^4.0.3",
"dialogflow-fulfillment": "^0.6.1",
"express": "^4.18.2",
"mongoose": "^5.13.15",
"pb-util": "^1.0.3"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.20"
}
}