-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 882 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
31
32
33
34
35
36
{
"name": "slack-bot",
"version": "1.0.0",
"description": "",
"main": "./build/server.js",
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"start": "node ./build/server.js",
"dev": "nodemon ./src/server.ts",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "Victor Ajibade",
"license": "MIT",
"dependencies": {
"@slack/events-api": "^3.0.0",
"@slack/interactive-messages": "^2.0.0",
"@slack/web-api": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.15"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"mongodb-memory-server-core": "^6.9.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}