-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 826 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 826 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
{
"name": "flippo",
"private": true,
"scripts": {
"build": "turbo run build",
"deploy": "turbo run deploy",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"graph:build": "turbo run build --graph=build.graph.png",
"graph:lint": "turbo run lint --graph=lint.graph.png",
"graph:deploy": "turbo run deploy --graph=deploy.graph.png",
"graph:dev": "turbo run dev --graph=dev.graph.png",
"bump": "changeset version",
"changeset": "changeset",
"publish": "npm i && turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"turbo": "^2.5.6"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=20",
"pnpm": ">=10.14.0"
}
}