-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.27 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
59
60
61
62
63
64
65
66
{
"name": "image_storage_microservice",
"version": "1.16.19",
"description": "A microservice to store images and their metadata",
"main": "index.ts",
"scripts": {
"dev": "nodemon index.ts --ignore ./uploads --ignore ./temp",
"build": "tsc --outdir ./build -p . ",
"start": "node ./build/index.js",
"test": "mocha -r ts-node/register test/*.ts --timeout 10000 --exit",
"test-local": "S3_BUCKET= npm run test",
"test-s3": "S3_BUCKET=jtekt-moreillon npm run test",
"test-all": "npm run test-local && npm run test-s3",
"coverage": "nyc npm run test-all",
"swagger-autogen": "ts-node swagger.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@moreillon/express_group_based_authorization_middleware": "^2.1.7",
"@moreillon/express_identification_middleware": "^1.3.5",
"@moreillon/express-oidc": "^2.1.0",
"archiver": "^5.3.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-prom-bundle": "^6.6.0",
"http-errors": "^2.0.0",
"minio": "^7.1.3",
"mongoose": "^6.3.4",
"multer": "^1.4.5-lts.1",
"multer-minio-storage": "^1.0.0",
"multer-s3": "^3.0.1",
"prom-client": "^15.0.0",
"rimraf": "^5.0.5",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.3",
"unzipper": "^0.10.11",
"uuid": "^9.0.0",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/chai": "^4.3.5",
"@types/cors": "^2.8.13",
"@types/http-errors": "^2.0.4",
"@types/mocha": "^10.0.1",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^3.0.3",
"@types/rimraf": "^4.0.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/unzipper": "^0.10.6",
"@types/uuid": "^9.0.1",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"supertest": "^6.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"keywords": [],
"author": "Maxime MOREILLON",
"license": "MIT"
}