-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "speeddial",
"version": "1.0.0",
"description": "Simple speedial API implementation",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prod": "npx ts-node src/index.ts",
"dev": "npx nodemon src/index.ts"
},
"keywords": [],
"author": "Martin Berguer - @xmartLabs",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^14.10.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@prisma/cli": "^2.7.0",
"@prisma/client": "^2.7.1",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/express-rate-limit": "^5.1.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/nodemailer": "^6.4.0",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-context": "^1.2.4",
"express-rate-limit": "^5.1.3",
"helmet": "^4.1.1",
"http-status": "^1.4.2",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.28.0",
"morgan": "^1.10.0",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"xss-clean": "^0.1.1"
}
}