This repository was archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
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
{
"name": "salesforce-slack-app",
"version": "1.0.0",
"description": "This is a sample scaffold to help you get started with Slack app integrated to Salesforce",
"scripts": {
"start": "node app.js",
"test": "jest --no-cache",
"lint": "eslint . --ext .js",
"prettier": "prettier --write \"**/*.{html,js,json,md,xml,yaml,yml}\""
},
"jest": {
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/developerforce/salesforce-slack-starter-kit.git"
},
"keywords": [
"slack salesforce",
"salesforce slack"
],
"author": "Salesforce Dev Rel",
"license": "CC0 1.0 Universal",
"bugs": {
"url": "https://github.com/developerforce/salesforce-slack-starter-kit"
},
"homepage": "https://github.com/developerforce/salesforce-slack-starter-kit",
"dependencies": {
"@slack/bolt": "^3.11.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"express": "^4.17.3",
"express-session": "^1.17.2",
"jsforce": "^1.11.0",
"node-cache": "^5.1.2",
"sf-jwt-token": "^1.3.0",
"slack-block-builder": "^2.5.0"
},
"devDependencies": {
"eslint-plugin-jest": "^26.4.6",
"jest": "^27.4.5",
"eslint": "^8.16.0",
"prettier": "^2.8.8"
}
}