-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
44
45
46
47
48
49
50
{
"name": "safeanzeigen-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SafeAnzeigen/safeanzeigen-backend.git"
},
"keywords": [
"nodejs",
"expressjs",
"backend",
"bachelor-thesis",
"rest-api",
"safeanzeigen"
],
"author": "Sascha Majewsky",
"license": "MIT",
"homepage": "https://github.com/SafeAnzeigen/safeanzeigen-backend",
"bugs": {
"url": "https://github.com/SafeAnzeigen/safeanzeigen-backend/issues"
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"helmet": "^4.6.0",
"image-downloader": "^4.3.0",
"jpeg-js": "^0.4.3",
"jsonwebtoken": "^8.5.1",
"jsqr": "^1.4.0",
"knex": "^0.95.6",
"knex-cleaner": "^1.3.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.5",
"pg": "^8.6.0",
"pg-connection-string": "^2.4.0",
"socket.io": "^4.5.1"
},
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "^2.6.2"
}
}