-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"name": "profile-images",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"start": "node --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/index.js",
"start:producer": "ts-node ./src/producer --project tsconfig.json",
"test": "jest --forceExit --detectOpenHandles --verbose",
"test:coverage": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.563.0",
"@aws-sdk/client-sqs": "^3.563.0",
"@aws-sdk/lib-storage": "^3.563.0",
"@dcl/platform-server-commons": "^0.0.4",
"@dcl/schemas": "^15.1.1",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^2.0.2",
"@well-known-components/http-server": "^2.1.0",
"@well-known-components/interfaces": "^1.4.3",
"@well-known-components/logger": "^3.1.3",
"@well-known-components/metrics": "^2.1.0",
"fast-glob": "^3.3.2",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@types/node-fetch": "^2.6.11",
"@well-known-components/test-helpers": "^1.5.8",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
}