-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "falling-fruit-api",
"description": "Falling Fruit API",
"version": "0.3.0",
"private": true,
"author": {
"name": "Ethan Welty",
"email": "ethan@fallingfruit.org"
},
"repository": {
"type": "git",
"url": "https://github.com/falling-fruit/api.git"
},
"engines": {
"node": "^16.1",
"yarn": ">= 1.22.17"
},
"license": "GPL-3.0",
"scripts": {
"start": "node index.js",
"validate": "npx swagger-cli validate docs/index.yml",
"build": "npx swagger-cli bundle --type=yaml docs/index.yml > docs/openapi.yml"
},
"dependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"aws-sdk": "^2.1015.0",
"base64url": "^3.0.1",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.20.0",
"express-recaptcha": "^5.0.2",
"jsonwebtoken": "^9.0.0",
"multer": "1.4.5-lts.1",
"pg-monitor": "^1.4.1",
"pg-promise": "^10.10.2",
"postmark": "^2.7.8",
"sharp": "^0.32.6"
}
}