-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1021 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
38
39
{
"name": "bankapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"predev": "yarn build",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"build": "concurrently \"rimraf dist\" \"npx tsc\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"mongoose": "^7.3.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/swagger-jsdoc": "^6.0.2",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
}
}