-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "auth-pro",
"version": "1.0.0",
"description": "Authentication API Boilerplate",
"main": "main.ts",
"scripts": {
"build": "tsc --build",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"nodemon ./dist/main.js\"",
"test": "ts-node jest.startup.ts --detectOpenHandles"
},
"keywords": [],
"author": "Leolima",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"restify": "^8.6.1",
"restify-cors-middleware2": "^2.1.2",
"restify-errors": "^8.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.2.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "^5.11.97",
"@types/restify": "^8.5.5",
"@types/restify-errors": "^4.3.4",
"@types/supertest": "^2.0.12",
"jest": "^29.2.2",
"jest-cli": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
}
}