-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "shared-cloud-storage",
"version": "1.2.0",
"description": " A server for abstracting AWS S3 Storage and allowing authenticated requests",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js",
"lint": "eslint --fix src test",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Kunal Bagaria <[email protected]> (https://kunalbagaria.com)",
"repository": {
"type": "git",
"url": "https://github.com/kunalbagaria/shared-cloud-storage.git"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.537.0",
"aws-sdk": "^2.1577.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"qrcode-terminal": "^0.12.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.10.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}