-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.01 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.01 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
86
87
88
89
90
91
92
93
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -b",
"typecheck": "tsc --noEmit",
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty --I msg,payload",
"start": "node ./build/src/index.js",
"prebuild": "npm run rimraf build && npm run prisma:generate",
"rimraf": "rimraf",
"lint": "eslint \"src/**/*.ts\" --fix",
"prisma:seed": "prisma db seed",
"prisma:generate": "prisma generate",
"prisma:reset": "prisma db push --force-reset",
"prisma:format": "prisma format",
"prisma:studio": "prisma studio",
"prisma:push": "prisma db push",
"prisma:migrate:new": "prisma migrate dev --create-only --name",
"prisma:migrate:production": "prisma migrate deploy",
"test:unit": "vitest run --project unit",
"test:integration": "cross-env LOG_LEVEL=warn NODE_ENV=production DATABASE_URL=postgresql://app_user:app_user@localhost:5433/sweetr_test SUPERUSER_DATABASE_URL=postgresql://postgres:postgres@localhost:5433/sweetr_test vitest run --project integration"
},
"prisma": {
"seed": "tsx prisma/seed/run-seeder.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/fastify": "^6.19.0",
"@date-fns/tz": "^1.2.0",
"@date-fns/utc": "^2.1.0",
"@envelop/generic-auth": "^7.0.0",
"@envelop/rate-limiter": "^6.2.1",
"@fastify/cors": "^11.2.0",
"@fastify/formbody": "^8.0.2",
"@fastify/rate-limit": "^10.3.0",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.0",
"@logtail/pino": "^0.5.6",
"@prisma/client": "^5.5.2",
"@sentry/node": "^9.3.0",
"@sentry/profiling-node": "^9.3.0",
"@slack/web-api": "^7.11.0",
"@sweetr/email-templates": "*",
"@sweetr/graphql-types": "*",
"basic-auth": "^2.0.1",
"bcrypt": "^6.0.0",
"bullmq": "^5.42.0",
"date-fns": "^4.0.0",
"dotenv": "^16.3.1",
"envsafe": "^2.0.3",
"fastify": "^5.8.5",
"fastify-raw-body": "^5.0.0",
"got": "^11.8.3",
"graphql": "^16.8.1",
"graphql-scalars": "^1.22.4",
"graphql-yoga": "^5.18.0",
"hashids": "^2.3.0",
"ioredis": "^5.9.3",
"jsonwebtoken": "^9.0.2",
"micromatch": "^4.0.8",
"octokit": "^3.2.2",
"pino": "^9.13.1",
"radash": "^11.0.0",
"re2": "^1.23.3",
"resend": "^6.0.0",
"semver": "^7.5.4",
"stripe": "^16.6.0",
"utility-types": "^3.10.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.0.0",
"@graphql-codegen/client-preset": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.0",
"@graphql-codegen/typescript-resolvers": "^5.0.0",
"@octokit/webhooks-types": "^7.3.1",
"@types/bcrypt": "^6.0.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"cross-env": "^10.1.0",
"pino-pretty": "^13.0.0",
"prisma": "^5.5.2",
"tsx": "^4.15.9",
"typescript": "^5.2.2",
"vitest": "^3.2.4"
},
"packageManager": "npm@8.5.5"
}