-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 980 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
37
38
39
{
"name": "study-bot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=local node ./build/src/index.js",
"prod": "NODE_ENV=production node src/index.js",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/bangnh1/ts-workflow-bot.git"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"gts": "^3.1.0",
"@types/node": "^14.11.2"
},
"dependencies": {
"@slack/bolt": "^3.2.0",
"@slack/web-api": "^6.0.0",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1"
}
}