-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
{
"name": "auth-api",
"version": "0.0.1",
"description": "Authentication API created with NodeJS, Express, TypeScript and PostgreSQL",
"main": "src/index.ts",
"repository": "https://github.com/algorodev/auth-api.git",
"author": "Alejandro Gonzalez Romero <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"test": "jest",
"build": "npx tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prepare:hooks": "husky install",
"gen:migration": "prisma migrate dev --create-only",
"deploy:migration": "prisma migrate deploy",
"reset:migration": "prisma migrate reset"
},
"dependencies": {
"@prisma/client": "5.10.2",
"cors": "2.8.5",
"dotenv": "16.4.1",
"express": "4.18.2",
"helmet": "7.1.0",
"joi": "17.12.2",
"morgan": "1.10.0",
"rate-limiter-flexible": "4.0.1",
"swagger-ui-express": "5.0.0",
"winston": "3.11.0"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/joi": "17.2.3",
"@types/morgan": "1.9.9",
"@types/node": "20.11.14",
"@types/supertest": "6.0.2",
"@types/swagger-ui-express": "4.1.6",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-plugin-security": "2.1.0",
"husky": "9.0.7",
"jest": "29.7.0",
"jest-mock-extended": "3.0.5",
"nodemon": "3.0.3",
"prisma": "5.10.2",
"supertest": "6.3.4",
"swagger-autogen": "2.23.7",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}