-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.44 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "screencraft-api",
"version": "1.0.0",
"description": "ScreenCraft API Backend - Screenshot Generation Service",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"worker:dev": "tsx watch src/worker.ts",
"worker:start": "node dist/worker.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"docker:up": "docker-compose -f docker/docker-compose.yml up -d",
"docker:down": "docker-compose -f docker/docker-compose.yml down",
"docker:logs": "docker-compose -f docker/docker-compose.yml logs -f",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"prisma:seed": "tsx prisma/seed.ts"
},
"keywords": [
"screenshot",
"api",
"playwright",
"fastify"
],
"author": "",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.958.0",
"@aws-sdk/s3-request-presigner": "^3.958.0",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^12.0.1",
"@fastify/oauth2": "^8.1.2",
"@fastify/rate-limit": "^10.1.1",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.3",
"@fastify/type-provider-typebox": "^6.1.0",
"@fastify/websocket": "^11.0.1",
"@prisma/client": "^5.22.0",
"bcryptjs": "^3.0.2",
"bullmq": "^5.16.2",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"ioredis": "^5.4.2",
"js-yaml": "^4.1.1",
"jsonwebtoken": "^9.0.2",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"playwright": "^1.49.1",
"rate-limiter-flexible": "^9.0.1",
"resend": "^6.6.0",
"stripe": "^17.5.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^4.0.16",
"msw": "^2.12.6",
"prisma": "^7.2.0",
"supertest": "^7.1.4",
"testcontainers": "^11.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}