-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.56 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
43
44
45
46
47
48
{
"name": "reflectivelearningchatbots",
"version": "1.0.0",
"description": "Program to create interactive chatbots for reflective learning",
"main": "index.js",
"scripts": {
"test": "mocha --exit",
"start": "node --optimize_for_size --max_old_space_size=2048 index.js",
"start-local": "node index.js -l",
"download-data": "node src/downloadData.js",
"download-transcripts": "node src/downloadTranscripts.js",
"delete-sensitive": "node src/deleteSensitiveData.js",
"delete-all": "node src/deleteAllData.js",
"generate-team-names": "node src/generateTeamNames.js",
"send-custom-messages": "node src/sendCustomMessage.js",
"express": "node webapp.js",
"check-config": "node src/configChecker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RationalityEnhancement/ReflectiveLearningChatbots.git"
},
"author": "Srinidhi Srinivas",
"license": "ISC",
"bugs": {
"url": "https://github.com/RationalityEnhancement/ReflectiveLearningChatbots/issues"
},
"homepage": "https://github.com/RationalityEnhancement/ReflectiveLearningChatbots#readme",
"dependencies": {
"@appsignal/nodejs": "^2.4.2",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"moment-timezone": "^0.5.34",
"mongodb-memory-server": "^8.4.2",
"mongoose": "^6.2.10",
"node-emoji": "^1.11.0",
"node-schedule": "^2.1.0",
"object-sizeof": "^1.6.3",
"request": "^2.88.2",
"telegraf": "^4.7.0"
},
"engines": {
"node": "17.9.0"
}
}