-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "pitlane",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "npm run test --workspaces",
"dev": "npm run dev --workspace=apps/web",
"build": "npm run build --workspaces",
"lint": "npm run lint --workspaces",
"db:generate": "npx prisma generate --schema=apps/api/prisma/schema.prisma",
"db:push": "npx prisma db push --schema=apps/api/prisma/schema.prisma",
"seed:f1": "npx tsx apps/api/src/scripts/seed-f1-data.ts",
"seed:f1:all": "npx tsx apps/api/src/scripts/seed-f1-data.ts --all",
"seed:f1:stats": "npx tsx apps/api/src/scripts/seed-f1-data.ts --stats"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"private": "true",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@types/node": "^20.0.0",
"@types/nodemailer": "^7.0.11",
"@types/web-push": "^3.6.4",
"typescript": "^5.0.0"
},
"dependencies": {
"@fastify/rate-limit": "^10.3.0",
"@fastify/websocket": "^11.2.0",
"bcrypt": "^6.0.0",
"bullmq": "^5.70.1",
"dotenv": "^17.3.1",
"ioredis": "^5.9.3",
"nodemailer": "^8.0.1",
"web-push": "^3.6.7"
}
}