-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "gateway",
"version": "1.0.0",
"description": "Serverless gateway library for interfacing with the Hypermedia server. Facilitates client-side file uploads by obtaining necessary credentials from Hypermedia. Designed to seamlessly integrate CORS handling and provide a streamlined approach for secure, direct file uploads from client applications to Hypermedia.",
"keywords": [
"serverless",
"hypermedia",
"file-upload",
"gateway",
"cloud-storage",
"nodejs",
"api-integration",
"cors",
"axios",
"cloud-functions"
],
"main": "index.js",
"scripts": {
"lint": "eslint . --fix && prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "@hypermedialabs",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.4"
}
}