-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@PermanentOrg/upload-service",
"version": "0.0.0",
"description": "A service responsible for handling upload requests",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint ./src --ext .ts,.tsx",
"lint:prettier": "prettier . --check",
"lint:tsc": "tsc --noEmit",
"format": "npm run format:prettier && npm run format:eslint",
"format:prettier": "prettier --write .",
"format:eslint": "eslint ./src --fix || true",
"start": "ts-node src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PermanentOrg/upload-service.git"
},
"author": {
"name": "Permanent.org",
"email": "engineers@permanent.org",
"url": "https://www.permanent.org/"
},
"contributors": [
{
"name": "Dan Schultz"
},
{
"name": "Mithuna Krishna"
},
{
"name": "Jason Owen",
"email": "jasonaowen@opentechstrategies.com",
"url": "https://jasonaowen.net"
},
{
"name": "Cristina Muñoz"
},
{
"name": "Andrew Atwood",
"email": "aatwood@permanent.org"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PermanentOrg/upload-service/issues"
},
"homepage": "https://permanent.org",
"engines": {
"node": ">=22.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.996.0",
"@aws-sdk/client-sts": "^3.996.0",
"@aws-sdk/s3-presigned-post": "^3.996.0",
"@aws-sdk/s3-request-presigner": "^3.996.0",
"@sentry/node": "^10.40.0",
"express": "^5.2.1",
"express-winston": "^4.2.0",
"joi": "^18.0.2",
"uuid": "^11.1.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.13",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"eslint": "^9.39.3",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}