-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 962 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
34
35
36
37
38
39
{
"name": "todo-app",
"private": "true",
"version": "1.0.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"clean": "turbo run clean && rm -rf node_modules .firebase",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish",
"firebase:kill": "npx kill-port 5002 8080 8085 9000 9099 9199"
},
"workspaces": {
"nohoist": [
"**/@repo/server"
],
"packages": [
"apps/*",
"packages/*"
]
},
"dependencies": {
"firebase": "^10.11.1"
},
"devDependencies": {
"firebase-tools": "^13.8.0",
"prettier": "^3.2.5",
"turbo": "^1.13.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
}
}