-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 828 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
{
"name": "nlp_chat_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm install --prefix backend && npm install --prefix nlp-chat-client && npm run build --prefix nlp-chat-client && npm run build --prefix backend",
"start": "cd backend && node server.js",
"dev": "concurrently \"cd backend && npm run dev\" \"cd nlp-chat-client && npm start\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/devalparikh/NLP_Chat_App.git"
},
"author": "Deval Parikh",
"license": "ISC",
"bugs": {
"url": "https://github.com/devalparikh/NLP_Chat_App/issues"
},
"homepage": "https://github.com/devalparikh/NLP_Chat_App#readme",
"devDependencies": {
"concurrently": "^5.3.0"
}
}