-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 KB
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
{
"name": "thumbnail-api",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"clean": "rm -r dist 2> /dev/null ; exit 0",
"start": "node dist/src/main.js",
"lint": "npx eslint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"test": "jest test/unit",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org dpla --project thumbnail-api ./dist && sentry-cli sourcemaps upload --org dpla --project thumbnail-api ./dist"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@aws-sdk/client-sqs": "^3.721.0",
"@aws-sdk/s3-request-presigner": "^3.722.0",
"@sentry/cli": "^2.40.0",
"@sentry/node": "^8.47.0",
"@sentry/profiling-node": "^8.47.0",
"express": "^4.21.2",
"morgan": "^1.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/express": "^4.17.8",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-express": "^1.12.0",
"jest-extended": "^4.0.2",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}