-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 948 Bytes
/
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": "tabak-taste-api",
"version": "1.0.0",
"description": "RESTful API for tabak-taste.de",
"main": "api.js",
"scripts": {
"start": "node api.js",
"dev": "nodemon api.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikke09/Tabak-Taste.git"
},
"keywords": [
"Rest",
"REST",
"API",
"Tabak",
"Tobacco",
"Taste",
"Geschmack",
"Shisha"
],
"author": "Christian Bechtluft (ikke09)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ikke09/Tabak-Taste/issues"
},
"homepage": "https://github.com/ikke09/Tabak-Taste#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"helmet": "^5.0.2",
"mongoose": "^6.1.8",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}