-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 856 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
31
32
33
34
35
{
"name": "cloudpep",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"start:3001": "PORT=3001 INSTANCE_ID=instance-1 node src/server.js",
"start:3002": "PORT=3002 INSTANCE_ID=instance-2 node src/server.js",
"test": "jest --forceExit --coverage",
"lint": "eslint src/ tests/"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@aws-sdk/client-s3": "^3.1041.0",
"@aws-sdk/s3-request-presigner": "^3.1041.0",
"express": "^5.2.1",
"multer": "^2.1.1",
"sharp": "^0.34.5",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}