-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"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.22.1",
"image-size": "1.2.1"
},
"engines": {
"node": ">=18.0.0 <20.0.0",
"npm": ">=9.0.0"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"prettier": "3.6.2",
"swagger-autogen": "2.23.7",
"swagger-ui-express": "5.0.1"
}
}