-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 984 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 984 Bytes
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
{
"name": "api-base-jwt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit --runInBand",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"keywords": [],
"author": "Kevin Frutos <kevin.frutos.dev@gmail.com> (https://github.com/KevinFrutos)",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.1"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/express": "^5.0.3",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.30",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}