This repository was archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.84 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"group-date": "tsx src/group-date.ts",
"resend": "tsx src/resend.ts",
"travel": "tsx src/travel.ts",
"seed:prod": "tsx src/seed/seed-prod.ts",
"seed:dev": "tsx src/seed/seed-dev.ts",
"migrate:deploy": "npx prisma migrate deploy",
"migrate:dev": "npx prisma migrate dev",
"db:push": "npx prisma db push",
"build": "tsc --p tsconfig.json && yarn sentry:sourcemaps",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"generate": "npx zenstack generate --schema src/zenstack/schema.zmodel",
"postinstall": "husky install && prisma generate",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org sweetie-dates --project sweetie-server ./dist && sentry-cli sourcemaps upload --org sweetie-dates --project sweetie-server ./dist"
},
"dependencies": {
"@apollo/server": "^4.7.1",
"@bull-board/api": "^5.8.4",
"@bull-board/express": "^5.8.4",
"@google-cloud/storage": "^6.10.1",
"@googlemaps/addressvalidation": "^2.0.0",
"@googlemaps/google-maps-services-js": "^3.3.31",
"@pothos/core": "^3.30.0",
"@pothos/plugin-errors": "^3.11.1",
"@prisma/client": "^5.8.1",
"@sentry/cli": "^2.23.2",
"@sentry/node": "^7.92.0",
"@types/node": "^20.2.1",
"@zenstackhq/runtime": "1.0.0-alpha.116",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"bullmq": "^4.11.4",
"connect-redis": "^7.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"googleapis": "^129.0.0",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.2",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.14.0",
"ics": "^3.1.0",
"ioredis": "^5.3.2",
"isbot": "^4.4.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"mixpanel": "^0.17.0",
"postmark": "^3.0.18",
"react": "^18.2.0",
"resend": "^3.1.0",
"stripe": "^13.8.0",
"ts-pattern": "^4.3.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.1",
"voucher-code-generator": "^1.3.0",
"ws": "^8.14.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@biomejs/biome": "1.4.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.5",
"@types/connect-redis": "^0.0.22",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.9",
"@types/jsonwebtoken": "^9.0.2",
"@types/luxon": "^3.3.0",
"@types/react": "^18.2.48",
"@types/ua-parser-js": "^0.7.37",
"@types/uuid": "^9.0.7",
"@types/voucher-code-generator": "^1.1.3",
"@types/ws": "^8.5.6",
"husky": "^8.0.0",
"pinst": "^3.0.0",
"prisma": "^5.8.1",
"rome": "^12.1.2",
"zenstack": "1.0.0-alpha.116"
},
"packageManager": "[email protected]"
}