generated from leveorxyz/express-boilerplate-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 954 Bytes
/
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
{
"name": "express-rate-limit",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"swagger": "node swaggerGen.ts",
"test": "jest --detectOpenHandles --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.16",
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"ts-node-dev": "^2.0.0"
}
}