-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 840 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 840 Bytes
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": "getting-started-typescript",
"version": "1.0.0",
"description": "Bolt getting started app in TypeScript",
"main": "dist/app.js",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"start": "node dist/server/main.js",
"dev": "nodemon dist/server/main.js"
},
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.3.0",
"body-parser": "^1.20.2",
"dotenv": "^8.2.0",
"express": "^4.18.3",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.3.3",
"serverless-plugin-common-excludes": "^4.0.0",
"serverless-plugin-include-dependencies": "^6.0.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-node": "^9.1.1",
"typescript": "^4.9.5"
}
}