-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.05 KB
/
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
34
35
36
37
38
39
40
41
{
"name": "mono-ts",
"description": "A quest for the ideal TS monorepo setup",
"version": "0.0.0",
"keywords": [
"typescript",
"monorepo",
"firebase",
"isolate-package",
"esm",
"turbo",
"turborepo",
"nextjs"
],
"private": true,
"packageManager": "pnpm@9.0.4+sha256.caa915eaae9d9aefccf50ee8aeda25a2f8684d8f9d5c6e367eaf176d97c1f89e",
"author": "Thijs Koerselman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/0x80/mono-ts"
},
"scripts": {
"compile": "turbo run compile",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"watch": "turbo watch build --filter=@repo/backend --filter=@repo/fns --filter=@repo/api",
"lint": "turbo run lint --parallel",
"test": "turbo run test -- --watch false",
"format": "prettier --write ."
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"vercel": "^37.7.1",
"vitest": "^1.6.0"
}
}