-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 765 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
{
"name": "ilsochrone",
"version": "0.0.1",
"private": true,
"description": "Tel Aviv isochrone web app — see where you can get to in N minutes, and what's there.",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yml,yaml}\""
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"turbo": "^2.1.3",
"typescript": "^5.6.3"
}
}