-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 814 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 814 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": "oc-monorepo",
"private": true,
"packageManager": "npm@11.12.1",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test-silent": "turbo run test-silent",
"lint": "turbo run lint",
"preview": "turbo run preview --filter=oc",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release:prepare": "npm run test-silent && npm run changeset:version",
"release:publish": "npm run build && npm run changeset:publish",
"release": "npm run release:prepare && npm run release:publish",
"prepare": "lefthook install"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"lefthook": "^1.13.0",
"turbo": "^2.5.8"
}
}