-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "upload-s3",
"version": "1.0.0",
"description": "",
"type": "commonjs",
"main": "index.ts",
"scripts": {
"tests:integration": "jest src/tests/e2e --watch",
"tests:unit": "jest src/tests/unit --watch",
"tests:all": "npm run tests:integration & npm run tests:unit",
"dev": "nodemon src/api/server.ts",
"start": "npm run build && node dist/api/server.js",
"docker:build": "docker build -t uploads3 -f docker/Dockerfile .",
"prepare": "husky install",
"build": "tsc",
"format": "prettier --write .",
"tests:e2e": "jest src/tests/e2e",
"coverage": "jest --coverage",
"k6:dev": "k6 run ./scripts/dev/**.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.5",
"@types/supertest": "^6.0.2",
"express": "^4.19.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "3.2.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.550.0",
"@types/k6": "^0.51.0",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"helmet": "^7.1.0",
"ioredis": "^5.4.1",
"k6": "^0.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"newrelic": "^12.3.0",
"winston": "^3.13.0",
"zod": "^3.22.4"
}
}