-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
47
48
49
50
51
52
{
"name": "lamorak",
"version": "1.0.0",
"description": "Rest API for Food Delivery App made with Node TypeScript Express, TypeORM",
"main": "./dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"watch": "tsc -w"
},
"keywords": [
"Rest-api",
"Express",
"TypeORM",
"Backend",
"SQL"
],
"author": "Arkaraj",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/node": "^15.3.0",
"@types/passport": "^1.0.6",
"@types/passport-jwt": "^3.0.5",
"@types/winston": "^2.4.4",
"mysql": "^2.18.1",
"ts-node": "^9.1.1",
"typeorm": "^0.2.32",
"typescript": "^4.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv-save": "^1.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3"
}
}