-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1011 Bytes
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
{
"name": "wppsync",
"version": "0.0.1",
"author": "ImString",
"type": "module",
"private": true,
"packageManager": "pnpm@11.9.0",
"scripts": {
"start": "turbo start",
"build": "turbo build",
"dev": "turbo dev",
"dev:client": "turbo dev --filter @wppsync/client",
"dev:server": "turbo dev --filter @wppsync/server",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push",
"db:push:dev": "turbo db:push:dev",
"db:studio": "turbo db:studio",
"db:studio:dev": "turbo db:studio:dev"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [],
"license": "MIT",
"dependencies": {
"@dotenvx/dotenvx": "^1.34.0",
"@fastify/cors": "^11.3.0",
"@fastify/helmet": "^13.1.0",
"@fastify/multipart": "^10.1.0",
"ansicolor": "^2.0.3",
"fastify": "^5.10.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^26.1.1",
"@zyrohub/ts-runner": "^0.0.8",
"turbo": "^2.9.6",
"typescript": "^7.0.2"
}
}