-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 957 Bytes
/
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
{
"name": "monorepo",
"private": true,
"scripts": {
"dev": "turbo dev",
"build:website": "turbo build --filter=website",
"start:website": "turbo start --filter=website",
"start:dash": "turbo start --filter=dash",
"automate:privySync": "turbo automate:privySync --filter=automations",
"automate:shopifySync": "turbo automate:shopifySync --filter=automations",
"automate:refreshLeaderboard": "turbo automate:refreshLeaderboard --filter=automations",
"automate:refreshRoles": "turbo automate:refreshRoles --filter=automations"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.3",
"@types/node": "^20.14.1",
"turbo": "^2.3.3"
},
"engines": {
"node": ">=19.9.0 <21.3.0"
},
"type": "module",
"packageManager": "npm@10.2.4",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@t3-oss/env-nextjs": "^0.10.1",
"typescript": "^5.3.3"
}
}