-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "dish-exchange",
"version": "1.0.0",
"description": "This is a feature to add dishes, made for the dish-exchange concept.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvdegroen/project.git"
},
"keywords": [
"feature",
"school"
],
"author": "Roshnie de Groen",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rvdegroen/project/issues"
},
"homepage": "https://github.com/rvdegroen/project#readme",
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"heroku": "^7.60.2",
"mongodb": "^4.6.0",
"multer": "^1.4.5-lts.1"
}
}