-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "easy-dossie-api",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:EasyTech-Sol/EasyDossieAPI.git",
"author": "Valmir Filho <valmirnogueira514@gmail.com>",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@prisma/client": "^6.7.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.3",
"prisma": "^6.7.0",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0",
"supertest": "^7.1.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.2",
"@types/nodemailer": "^6.4.17",
"@types/swagger-ui-express": "^4.1.8",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"scripts": {
"start": "tsx src/index.ts",
"server": "tsx src/server.ts",
"dev": "nodemon --watch src --ext ts --exec tsx src/server.ts",
"test": "jest --config jest.config.ts",
"test:debug": "jest --config jest.config.ts --runInBand"
}
}