-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 808 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
{
"name": "typescript-slack-bolt-serverless-cloud-starter",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "cloud",
"test": "cloud test",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"devDependencies": {
"@serverless/cloud": "^2.0.0",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
},
"serverless": {
"app": "typescript-slack-bolt-serverless-cloud-starter",
"org": "<your_org>"
},
"dependencies": {
"@slack/bolt": "^3.11.0"
}
}