-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "nachhilfe-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"build": "tsc",
"start:prod": "NODE_ENV=production node build/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.20",
"@types/node": "^17.0.15",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"handlebars": "^4.7.7",
"moment": "^2.29.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"platform": "^1.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/platform": "^1.3.4",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}