-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
{
"name": "watchlist-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"serve": "ts-node-dev --transpile-only src/server.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test": "NODE_ENV=production jest --force-exit --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.8",
"@types/express-handlebars": "^3.1.0",
"@types/express-jwt": "^6.0.1",
"@types/express-rate-limit": "^5.1.1",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.1",
"@types/lusca": "^1.6.2",
"@types/mongodb": "^3.5.28",
"@types/morgan": "^1.9.1",
"@types/node": "^14.11.9",
"@types/node-fetch": "^2.5.7",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"lusca": "^1.6.1",
"nodemon": "^2.0.5",
"prettier": "^2.2.1",
"prettier-eslint": "^11.0.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-jwt": "^6.0.0",
"express-rate-limit": "^5.2.3",
"firebase-admin": "^9.11.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-html-parser": "^1.3.1",
"rotating-file-stream": "^2.1.3",
"winston": "^3.3.3"
}
}