-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "slack-snackatron",
"version": "1.0.0",
"description": "",
"module": "esnext",
"engines": {
"node": "14.16.0"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node .",
"test": "jest --passWithNoTests",
"test-network": "concurrently -s first -k 'npm:start' 'node network-test.js'",
"dev": "ts-node-dev index.ts",
"dev:debug": "ts-node-dev --inspect --respawn index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexjamesmalcolm/slack-snackatron.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexjamesmalcolm/slack-snackatron/issues"
},
"homepage": "https://github.com/alexjamesmalcolm/slack-snackatron#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tslint": "^5.12.1"
},
"dependencies": {
"@slack/bolt": "^3.9.0",
"@types/mongodb": "^3.6.20",
"@types/node-fetch": "^2.5.12",
"@types/uuid": "^8.3.1",
"concurrently": "^6.3.0",
"dotenv": "^8.2.0",
"mongodb": "^3.7.3",
"node-fetch": "^2.6.5",
"proposal-temporal": "^0.7.0",
"ts-node": "^9.1.1",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
}
}