-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1011 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
{
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"hbs": "^4.2.0",
"multer": "^1.4.5-lts.1",
"node": "^18.20.2",
"nodemon": "^3.1.0",
"path": "^0.12.7",
"pdfkit": "^0.15.0",
"pg": "^8.11.5",
"qrcode": "^1.5.3",
"uuid": "^9.0.1"
},
"name": "ticketbuddy",
"description": "Αρχοντής Κοσμάς",
"version": "1.0.0",
"main": "index.mjs",
"scripts": {
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "node ./node_modules/nodemon/bin/nodemon.js ./index.mjs",
"start": "node ./index.mjs"
},
"nodemonConfig": {
"ignore": [
"model/*.json"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7"
}
}