-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "slack-archiver",
"version": "1.0.0",
"description": "A tool to archive slack messages.",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"postinstall": "npm run build",
"start-save": "scripts/run-save.js",
"build": "tsc"
},
"author": "Chantal Chawki (chantal.chawki@gmail.com)",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/mongoose": "^5.5.21",
"@types/node-cron": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"ts-node": "^8.4.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@slack/web-api": "^5.2.1",
"@timberio/node": "^0.35.0",
"@timberio/winston": "^0.35.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"mongoose": "^5.7.5",
"node-cron": "^2.0.3",
"winston": "^3.2.1"
}
}