-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "slackapi-tasks-app",
"version": "1.0.0",
"description": "Tasks App is a sample Task Management app built on the Slack Platform.",
"main": "app.js",
"scripts": {
"test": "jest --no-cache",
"lint": "eslint . --ext .js",
"build": "npx sequelize-cli db:migrate"
},
"jest": {
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/slackapi/tasks-app.git"
},
"keywords": [
"slackapi"
],
"author": "Slack Technologies",
"license": "MIT",
"bugs": {
"url": "https://github.com/slackapi/tasks-app/issues"
},
"homepage": "https://github.com/slackapi/tasks-app#readme",
"dependencies": {
"@slack/bolt": "^3.8.1",
"dotenv": "^10.0.0",
"eslint-plugin-jest": "^24.4.2",
"luxon": "^1.28.1",
"nodemon": "^2.0.20",
"pluralize": "^8.0.0",
"sequelize": "^6.6.5",
"slack-block-builder": "^2.1.1",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"sequelize-cli": "^6.3.0"
}
}