-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.15 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lowracing-api",
"version": "1.0.0",
"description": "Low Racing API is responsible for taking care of the entire Low Racing ecosystem",
"main": "src/infra/http/server.ts",
"repository": "https://github.com/JulioDeveloper/lowracing-api",
"keywords": [],
"author": "Júlio Developer",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsx watch src/infra/http/server.ts",
"start": "node -r tsconfig-paths/register dist/infra/http/server.js",
"build": "npx prisma generate && npx prisma migrate deploy && npx tsc --project tsconfig.json && npx tscpaths -p tsconfig.json -s ./src -o ./dist"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@flydotio/dockerfile": "^0.7.2",
"@jest/globals": "^29.7.0",
"@prisma/client": "^6.2.1",
"@swc/core": "^1.10.4",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.11",
"@types/nodemailer": "^6.4.17",
"@types/slug": "^5.0.9",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bettercolors": "^1.1.1",
"cloudinary": "^2.5.1",
"console-stamp": "^3.1.2",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"image-data-uri": "^2.0.1",
"is-iso-date": "^0.0.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.7",
"prisma": "^6.2.1",
"slug": "^10.0.0",
"socket.io": "^4.8.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.2.2",
"tsx": "^4.19.2",
"uuid": "^9.0.1",
"vercel": "^39.3.0"
}
}