-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
36
37
38
39
{
"name": "@rummel/monorepo",
"packageManager": "yarn@3.7.0",
"version": "0.0.1",
"description": "Rummel monorepo with examples",
"author": "bbl",
"private": true,
"license": "ICS",
"workspaces": [
"packages/*",
"libs/*",
"samples/*"
],
"scripts": {
"release": "changeset publish",
"build": "turbo run build",
"build:lib": "turbo run build --filter='./libs/*'",
"build:samples": "turbo run build --filter='./samples/*'",
"dev": "turbo run dev",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration",
"lint": "turbo run lint",
"lint:type-check": "turbo run lint:type-check",
"clean": "turbo run clean",
"syncpack:fix-mismatches": "syncpack fix-mismatches",
"syncpack:update": "syncpack update",
"postinstall": "patch-package --error-on-warn"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"changesets-gitlab": "0.10.3",
"concurrently": "^8.2.2",
"patch-package": "^8.0.0",
"syncpack": "^12.3.0",
"turbo": "^2.0.3"
}
}