forked from pozil/sf-docs-from-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "sf-docs-from-s3",
"version": "1.0.0",
"private": true,
"description": "Proxy that allows to read files from Amazon S3 behind Salesforce OAuth",
"author": "Philippe Ozil (pozil)",
"license": "CC0-1.0",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"**/*.{css,html,js,json,md,page,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{css,html,js,json,md,page,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.95.0",
"@fastify/cookie": "^6.0.0",
"@fastify/session": "^8.2.0",
"dotenv": "^16.0.1",
"fastify": "^3.29.4",
"jsforce": "^1.11.1"
},
"devDependencies": {
"eslint": "^8.16.0",
"husky": "^8.0.1",
"lint-staged": "^13.2.1",
"prettier": "^2.6.2"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/*.js": [
"eslint"
]
},
"volta": {
"node": "16.14.0"
}
}