generated from ClementBobin/Api
-
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.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 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": "express-api",
"version": "1.1.0",
"description": "",
"type": "module",
"main": "src/app.ts",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/app.js",
"dev": "tsx src/app.ts",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"validate": "npx tsc --noEmit && npm run test && npx prisma validate && npx prisma format && npx jest --coverage",
"db": "npx prisma studio",
"seed": "tsx prisma/seed.ts",
"postinstall": "prisma generate",
"setup:dev": "npm i && prisma generate && prisma migrate dev --name init && npm run seed",
"db:deploy": "npx prisma migrate deploy && npx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.2",
"@prisma/client": "^6.3.1",
"@scalar/express-api-reference": "^0.4.180",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-oauth2-jwt-bearer": "^1.7.1",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"prisma": "^6.3.1",
"tsx": "^4.19.3",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@octokit/rest": "^22.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"ts-jest": "^29.2.6",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}