-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 873 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
{
"name": "rest-api",
"version": "1.0.0",
"description": "node js typescript project",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node dist/server.js",
"dev": "nodemon",
"prod": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"tsc": "^1.20150623.0",
"typescript": "^3.9.5"
}
}