-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@PermanentOrg/upload-service",
"version": "0.0.0",
"description": "A service responsible for handling upload requests",
"main": "lib/index.js",
"scripts": {
"build": "node ./node_modules/@babel/cli/bin/babel.js --extensions \".ts,.tsx\" src -d lib",
"check-types": "tsc",
"eslint": "eslint ./src --ext .ts,.tsx",
"lint": "npm run eslint && npm run check-types",
"start": "babel-node --extensions \".ts,.tsx\" 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": ">=16.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.705.0",
"@aws-sdk/s3-presigned-post": "^3.677.0",
"@aws-sdk/s3-request-presigner": "^3.701.0",
"@sentry/node": "^8.45.0",
"aws-sdk": "^2.1692.0",
"express": "^4.21.2",
"express-winston": "^4.2.0",
"joi": "^17.13.3",
"uuid": "^11.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@tsconfig/node16": "^16.1.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}