-
-
Notifications
You must be signed in to change notification settings - Fork 554
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "vitest",
"start": "vite-node --watch ./start.ts",
"build": "vite build --ssr ./index.ts && node ../scripts/bundle-yarn.js",
"server:test": "yarn workspace server test",
"server:start": "yarn workspace server start",
"server:build": "yarn workspace server run build"
},
"dependencies": {
"@google-cloud/storage": "^7.7.0",
"@googleapis/identitytoolkit": "^8.0.1",
"@pothos/core": "^3.41.0",
"@sendgrid/mail": "^8.1.0",
"dataloader": "^2.2.2",
"date-fns": "^3.3.1",
"date-fns-tz": "^2.0.0",
"db": "workspace:*",
"envalid": "^8.0.0",
"google-auth-library": "^9.6.3",
"got": "^14.2.0",
"graphql": "^16.8.1",
"graphql-relay": "^0.10.0",
"graphql-yoga": "^5.1.1",
"knex": "^3.1.0",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.5",
"pg": "^8.11.3",
"quick-lru": "^7.0.0",
"slugify": "^1.6.6",
"source-map-support": "^0.5.21",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js#v20.49.0",
"zod": "^3.22.4"
},
"bundledDependencies": [
"db"
],
"devDependencies": {
"@google-cloud/cloud-sql-connector": "^1.2.2",
"@graphql-codegen/cli": "5.0.2",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.0",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^6.0.2",
"chalk": "^5.3.0",
"envars": "^1.0.2",
"execa": "^8.0.1",
"get-port": "^7.0.0",
"happy-dom": "^13.3.8",
"scripts": "workspace:*",
"supertest": "^6.3.4",
"type-fest": "^4.26.1",
"typescript": "~5.6.3",
"vite": "~5.4.10",
"vite-node": "~2.1.4",
"vite-plugin-node": "^4.0.0",
"vite-plugin-static-copy": "^2.1.0",
"vitest": "~2.1.4"
}
}