-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "handy-ones",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivliag/handy-ones.git"
},
"bugs": {
"url": "https://github.com/ivliag/handy-ones/issues"
},
"homepage": "https://github.com/ivliag/handy-ones#readme",
"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.22.0",
"turbo": "latest"
},
"packageManager": "[email protected]"
}