-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "slackbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@slack/events-api": "^3.0.0",
"@slack/interactive-messages": "^2.0.0",
"@slack/web-api": "^6.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash.clonedeep": "^4.5.0",
"mongodb": "^3.6.4",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"normalize-port": "^1.0.0"
},
"devDependencies": {
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.3",
"mongodb-memory-server-core": "^6.9.3",
"mongodb-memory-server-global": "^6.9.3",
"supertest": "^6.1.3"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"preset": "@shelf/jest-mongodb",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": "13.x"
}
}