-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.95 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
94
{
"name": "my-lane-tak",
"version": "0.1.0",
"description": "Coding exercise",
"repository": {
"type": "git",
"url": "https://github.com/Perry5/my-lane-task.git"
},
"author": "Perry Ogwuche",
"license": "MIT",
"engines": {
"node": ">=11.10.1",
"npm": ">=6.7.0"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"dependencies": {
"@types/express-rate-limit": "^3.3.2",
"@types/express-validator": "^3.0.0",
"@types/express-winston": "^3.0.4",
"@types/geoip-lite": "^1.1.29",
"@types/hapi__joi": "^15.0.4",
"@types/joi": "^14.3.3",
"@types/ping": "^0.2.0",
"@types/swagger-ui-express": "^3.0.1",
"acorn": "^7.0.0",
"async": "^3.0.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"celebrate": "^10.0.1",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-validator": "^6.0.1",
"express-winston": "^3.3.0",
"geoip-lite": "^1.3.8",
"joi": "^14.3.1",
"lodash": "^4.17.13",
"ping": "^0.2.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"swagger-ui-express": "^4.1.1",
"whois": "^2.11.0",
"whois-rdap": "^1.4.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/async": "^3.0.0",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/compression": "^0.0.36",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.10",
"@types/request": "^2.48.1",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"eslint": "^5.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}