-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 853 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
{
"name": "chatbot",
"version": "1.0.0",
"description": "React and DialogFlow Chatbot prototype",
"main": "index.js",
"engines": {
"node": "10.16.3",
"npm": "6.14.2"
},
"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": "Jammar",
"license": "ISC",
"dependencies": {
"actions-on-google": "^2.12.0",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"dialogflow": "^0.10.3",
"dialogflow-fulfillment": "^0.6.1",
"express": "^4.17.1",
"nodemon": "^1.19.1",
"structjson": "^1.0.1",
"styled-components": "^5.1.0"
}
}