package.json
810 Bytes
{
"name": "chatbot-app",
"version": "1.0.0",
"description": "chatbot-app",
"main": "index.js",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"scripts": {
"start": "node index.js",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\"",
"backend": "nodemon index.js",
"frontend": "npm run front --prefix client"
},
"author": "Jaewon Ahn",
"contributors": [
"Minjeong Seo"
],
"license": "ISC",
"dependencies": {
"actions-on-google": "^2.12.0",
"axios": "^0.19.2",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.3",
"dialogflow": "^0.8.2",
"dialogflow-fulfillment": "^0.6.1",
"express": "^4.16.4",
"yup": "^0.29.1"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}