-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "dwella-backend",
"version": "1.0.0",
"description": "official backend for dwella.org",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:build": "tsc -w",
"start:run": "nodemon dist/server.js",
"start": "concurrently npm:start:*"
},
"repository":{
"type":"git",
"url":"https://github.com/dwella-org/backend.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/concurrently": "^7.0.0",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/mssql": "^9.1.5",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^10.0.0",
"bcrypt": "^5.1.1",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mssql": "^11.0.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.14",
"uuid": "^10.0.0"
}
}