-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.76 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "newman",
"version": "1.0.0",
"description": "Newman Server ",
"main": "index.js",
"repository": "https://skyhavoc@github.com/skyhavoc/newman.git",
"author": "Aman Nidhi <aman.sharefiles@gmail.com>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "12.14.0",
"yarn": "1.21.1"
},
"scripts": {
"lint:fix": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --fix",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"dev": "nodemon ./src/index.ts",
"start:dist": "echo START DIST && node ./dist/src/index.js",
"start:prod": "echo START2 && ts-node ./src/index.ts",
"compile": "echo COMPILE && tsc",
"build": "echo BUILD",
"build2": "yarn clean && yarn install && yarn compile",
"preinstall": "echo PREINSTALL",
"install": "echo INSTALL",
"postinstall": "echo POSTINSTALL",
"heroku-prebuild": "echo HEROKU_PREBUILD",
"heroku-postbuild": "echo HEROKU_POSTBUUILD",
"test": "jest --forceExit --coverage --verbose",
"test2": "jest --forceExit --verbose"
},
"dependencies": {
"@hapi/boom": "9.0.0",
"@hapi/joi": "17.1.0",
"app-root-path": "^3.0.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"celebrate": "11.0.1",
"chalk": "3.0.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.1",
"express-basic-auth": "1.2.0",
"faker": "^4.1.0",
"helmet": "3.21.2",
"http-status": "1.4.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"mockgoose": "^8.0.4",
"mongoose": "5.7.7",
"passport": "0.4.1",
"passport-cookie": "1.0.6",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"swagger-jsdoc": "3.4.0",
"swagger-ui-express": "4.1.2",
"ts-node": "^8.5.4",
"typescript": "3.7.2",
"uuid": "^3.4.0",
"chai": "^4.2.0",
"supertest": "^4.0.2",
"jest": "^25.1.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "2.4.2",
"@types/chai": "^4.2.8",
"@types/compression": "1.0.1",
"@types/cors": "2.8.6",
"@types/express": "4.17.2",
"@types/hapi__joi": "16.0.8",
"@types/helmet": "0.0.45",
"@types/jest": "^25.1.1",
"@types/lodash": "4.14.149",
"@types/mongoose": "5.5.41",
"@types/node": "13.5.0",
"@types/passport": "1.0.2",
"@types/passport-local": "1.0.33",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "3.0.2",
"@types/swagger-ui-express": "4.1.1",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"nodemon": "^2.0.2",
"prettier": "1.19.1",
"ts-jest": "^25.1.0"
}
}