-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 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
39
{
"name": "bolt-starter",
"version": "0.0.1",
"description": "Bolt app starter",
"main": "index.js",
"scripts": {
"local": "node_modules/.bin/nodemon http-mode.js",
"http-mode": "node_modules/.bin/nodemon http-mode.js",
"socket-mode": "node_modules/.bin/nodemon socket-mode.js",
"socket-mode-client": "node_modules/.bin/nodemon socket-mode-client.js",
"oauth": "node_modules/.bin/nodemon oauth.js",
"start-http-mode": "node http-mode.js",
"start-socket-mode": "node socket-mode.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:seratch/bolt-starter.git"
},
"keywords": [
"Slack",
"Bolt"
],
"author": "@seratch",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/bolt-starter/issues"
},
"homepage": "https://github.com/seratch/bolt-starter#readme",
"dependencies": {
"@slack/bolt": "^3.16.0",
"dotenv": "^16.3.1",
"https-proxy-agent": "^7.0.2"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2"
}
}