-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
42 lines (42 loc) · 1.12 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": "foodish",
"version": "1.0.0",
"description": "Random pictures of food dishes.",
"main": "app.js",
"scripts": {
"deploy-script": "node scripts/deployment/updateImageCount.js",
"dev": "nodemon app.js",
"pretty-all": "npx prettier --write .",
"start": "node ./docs/swagger.js && node app.js",
"test": "node test/checkImageSize.js",
"swagger-gen": "node ./docs/swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/surhud004/Foodish.git"
},
"author": "Surhud Bhagali (surhud004)",
"license": "MIT",
"bugs": {
"url": "https://github.com/surhud004/Foodish/issues"
},
"homepage": "https://github.com/surhud004/Foodish#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"image-size": "^1.1.1"
},
"engines": {
"node": ">=16.13.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "3.3.3",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1"
}
}