-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 896 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 896 Bytes
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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development ts-node-dev src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"build:db": "ts-node src/database/build.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.5",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"generate-password": "^1.7.0",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"node-cron": "^3.0.0",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"tslib": "^2.3.1",
"winston": "^3.3.3"
}
}