-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 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
48
49
50
51
52
53
{
"name": "pull_api_gatway",
"version": "1.0.0",
"description": "This program interprets rest API calls from the flutter application, and handles the storage within the postgres database and minio object store.",
"main": "src/app.ts",
"author": "William Dormer + Pull Dating Team",
"licence": "AGPL",
"scripts": {
"start": "ts-node src/app.ts"
},
"dependencies": {
"@types/busboy": "^1.5.0",
"@types/formidable": "^2.0.5",
"@types/joi": "^17.2.3",
"@types/uuid": "^8.3.4",
"@types/websocket": "^1.0.5",
"body-parser": "^1.20.0",
"busboy": "^1.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"env-var": "^7.1.1",
"esm": "^3.2.25",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"form-data": "^4.0.0",
"formidable": "^2.0.1",
"global": "^4.4.0",
"helmet": "^5.1.1",
"joi": "^17.6.0",
"luxon": "^3.0.1",
"minio": "^7.0.29",
"multer": "^1.4.5-lts.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.2",
"typescript": "^4.7.4",
"uuid": "^8.3.2",
"ws": "^8.8.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bunyan": "^1.8.6",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/luxon": "^2.3.2",
"@types/multer": "^1.4.7",
"@types/node": "^15.0.3",
"@types/ws": "^8.5.3",
"sequelize-typescript": "^2.1.3",
"ts-node": "^10.8.1"
}
}