-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 1015 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/core.git"
},
"scripts": {
"build": "turbo build",
"build:libs": "turbo build --filter=\"!@dmno/docs-site\" --filter=\"!@dmno/signup-api\"",
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev --concurrency=40 --parallel --filter=\"!@dmno/docs-site\" --filter=\"!@dmno/signup-api\"",
"lint": "turbo lint",
"changeset:add": "changeset add",
"changeset:version": "dmno run -- changeset version",
"changeset:publish": "pnpm build:libs && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"dmno": "workspace:*",
"only-allow": "^1.2.1",
"read-yaml-file": "^2.1.0",
"turbo": "^2.2.3",
"typescript": "catalog:"
},
"engines": {
"node": "^20.3.0 || >=21.0.0",
"pnpm": ">=9"
},
"packageManager": "[email protected]"
}