forked from Sidewalk-Works/Sidewalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 974 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
{
"name": "sidewalk",
"version": "0.1.0",
"private": true,
"description": "Open source hackathon starter for Sidewalk.",
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev:api": "pnpm --filter @sidewalk/api dev",
"dev:web": "pnpm --filter @sidewalk/web dev",
"dev:mobile": "pnpm --filter @sidewalk/mobile dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/node": "^22.15.30",
"eslint": "^9.27.0",
"globals": "^15.15.0",
"prettier": "^3.4.2",
"turbo": "^2.5.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.32.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma"
]
}
}