forked from communitycenter/stardew.app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 728 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 728 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
{
"name": "communitycenter",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter=stardew.app --ui=stream",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"format": "turbo format",
"test": "turbo test",
"clean": "turbo clean && rimraf .turbo",
"prepLocalEnv": "python3 scripts/prep-local-env.py"
},
"packageManager": "bun@1.2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20250707.2",
"drizzle-kit": "^0.31.4",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"turbo": "2.4.0",
"typescript": "5.8.2"
},
"dependencies": {
"drizzle-orm": "^0.44.5"
}
}