-
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": "sprout",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:npm": "turbo run build:npm",
"check": "pnpm check-types && pnpm lint && pnpm format:check && pnpm test",
"check-types": "turbo run check-types",
"clean:cache": "rimraf */*/.turbo .turbo */*/node_modules/.cache node_modules/.cache",
"format:check": "turbo run format:check",
"format:write": "turbo run format:write",
"lint": "turbo run lint",
"prepare-release": "changeset",
"publish-packages": "changeset publish",
"test": "turbo run test"
},
"prettier": "@qlik/prettier-config",
"devDependencies": {
"@changesets/cli": "2.27.8",
"@qlik/prettier-config": "0.4.17",
"rimraf": "6.0.1",
"turbo": "2.1.2"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"engines": {
"node": ">=20"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"eslint"
]
}
}
}