-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
53
54
55
56
57
58
59
{
"name": "GostivarApp",
"version": "0.0.1",
"description": "Gostivar App API",
"engines": {
"node": "10.16.3",
"npm": "6.1.0"
},
"devDependencies": {},
"dependencies": {
"@types/amqplib": "^0.5.13",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/dotenv": "^8.2.0",
"@types/express-winston": "^3.0.3",
"@types/helmet": "0.0.43",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^8.0.29",
"@types/nodemailer": "^6.2.0",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "^3.0.1",
"@types/winston": "^2.4.4",
"amqplib": "^0.5.5",
"aws-sdk": "^2.590.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-winston": "^3.2.1",
"helmet": "^3.19.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.2",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^3.3.0",
"swagger-ui-express": "^4.0.7",
"ts-node": "3.3.0",
"ts-node-dev": "^1.0.0-pre.40",
"typeorm": "^0.2.21",
"typescript": "3.3.3333",
"winston": "^3.2.1"
},
"main": "build/index.js",
"scripts": {
"tsc": "tsc",
"start": "set debug=* && ts-node-dev --respawn --transpileOnly ./src/index.ts",
"postinstall": "npm run tsc",
"prod": "tsc && node ./build/index.js",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migration:revert": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"node:build": "node ./build/index.js"
}
}