-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "bot-brain",
"version": "1.0.0",
"description": "Bot main system.",
"main": "brain.js",
"scripts": {
"start": "node brain.js",
"adstart": "set USE_AUTH_SERVICE=true && set AUTH_SERVICE_ROUTE=https://si-ad.intech.lu/authentication && set AUTH_SERVICE_METHOD=POST && set AUTH_SERVICE_PASSWORD_FIELD=password && set AUTH_SERVICE_USERNAME_FIELD=username && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nakasar/bot-architecture-poc.git"
},
"author": "Kevin \"Nakasar\" Thizy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nakasar/bot-architecture-poc/issues"
},
"homepage": "https://github.com/Nakasar/bot-architecture-poc#readme",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.1.2",
"node-schedule": "^1.3.0",
"pug": "^2.0.3",
"request": "^2.87.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"jest": "^23.2.0"
}
}