-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.66 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "amup",
"version": "2.3.0",
"description": "AMUP - Artificial Machine Understanding Platform",
"main": "start/index.js",
"type": "module",
"scripts": {
"start": "node --no-warnings start/index.js",
"dev": "nodemon --no-warnings start/index.js"
},
"keywords": [],
"author": "Maximiliano Veiga",
"license": "APACHE-2.0",
"dependencies": {
"@horizon-rs/node-nlp": "^4.26.2",
"axios": "^0.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-validation": "^4.1.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"redis": "^3.1.2",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"eslint": "^8.21.0",
"nodemon": "^2.0.19"
},
"imports": {
"#agent/*": "./app/Agent/*",
"#agent/intents/*": "./app/Agent/Intents",
"#agent/models/*": "./app/Agent/Models",
"#models/*": "./app/Models/*",
"#routes/*": "./app/Routes/*",
"#controllers/*": "./app/Controllers/*",
"#database/*": "./app/Database/*",
"#middlewares/*": "./app/Middlewares/*",
"#validators/*": "./app/Validators/*",
"#config/*": "./config/*",
"#start/*": "./start/*",
"#app/*": "./app/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaximilianoVeiga/amup.git"
},
"bugs": {
"url": "https://github.com/MaximilianoVeiga/amup/issues"
},
"homepage": "https://github.com/MaximilianoVeiga/amup#readme"
}