-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pmt-auth",
"version": "1.0.0",
"description": "This is a package for implementing authentication.",
"main": "app.js",
"scripts": {
"build": "tsc --project './tsconfig.json'",
"start:dev": "tsc --project './tsconfig.json' --watch & NODE_ENV=development nodemon build/app.js",
"start:prod": "tsc --project './tsconfig.json' --watch & NODE_ENV=production node build/app.js",
"restart:pm2": "tsc --project './tsconfig.json' & NODE_ENV=development pm2 restart mellobackend",
"lint": "eslint -c .eslintrc.js --ext .ts src --fix",
"test": "jest --passWithNoTests",
"typeorm": "./node_modules/.bin/ts-node ./node_modules/.bin/typeorm"
},
"author": "DevSoc",
"license": "MIT",
"dependencies": {
"@types/bluebird": "^3.5.24",
"@types/lusca": "^1.6.2",
"@types/morgan": "^1.9.1",
"apollo-server-express": "^2.16.1",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"bull": "^3.15.0",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"express-status-monitor": "^1.3.3",
"express-validator": "^6.6.0",
"font-awesome": "^4.7.0",
"graphql": "^15.3.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"lusca": "^1.6.1",
"memory-cache": "^0.2.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"path": "^0.12.7",
"pg": "^8.3.0",
"pug": "^2.0.3",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"tslint": "^5.11.0",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/bcrypt-nodejs": "^0.0.31",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/express-status-monitor": "^1.2.1",
"@types/graphql": "^14.5.0",
"@types/jest": "26.0.4",
"@types/memory-cache": "^0.2.1",
"@types/node": "14.0.23",
"@types/passport": "^1.0.4",
"@types/passport-github": "^1.1.5",
"@types/redis": "^2.8.25",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"awesome-typescript-loader": "^5.2.0",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"typescript": "3.9.6"
}
}