-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 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
39
40
{
"name": "slack-code-runner",
"version": "1.0.0",
"description": "Self-hosted Slack bot to run your code snippets",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src/**/*.ts --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --forceExit --detectOpenHandles --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NessunKim/slack-code-runner.git"
},
"author": "Nessun Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/NessunKim/slack-code-runner/issues"
},
"homepage": "https://github.com/NessunKim/slack-code-runner#readme",
"devDependencies": {
"@types/dockerode": "^3.3.9",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@slack/bolt": "^3.12.1",
"dockerode": "^3.3.4",
"dotenv": "^16.0.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.8.1"
}
}