-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
40
41
42
43
44
45
46
47
{
"packageManager": "yarn@4.3.1",
"name": "@wasmcloud/monorepo",
"type": "commonjs",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run dev",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:unit": "turbo run test:unit",
"turbo:build": "turbo run build",
"turbo:dev": "turbo run dev",
"turbo:lint": "turbo run lint",
"turbo:lint:fix": "turbo run lint:fix",
"turbo:format": "turbo run format",
"turbo:format:fix": "turbo run format:fix",
"turbo:test": "turbo run test",
"turbo:test:e2e": "turbo run test:e2e",
"turbo:test:unit": "turbo run test:unit",
"format": "prettier --ignore-unknown --no-error-on-unmatched-pattern '**/*' --check",
"format:fix": "yarn format:prettier --write",
"changeset": "changeset",
"ci:version": "changeset version && yarn ci:update-lockfile",
"ci:update-lockfile": "yarn install --mode=update-lockfile",
"ci:publish": "turbo run prepare-release && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@types/node": "^20.17.12",
"@wasmcloud/prettier-config": "workspace:*",
"eslint": "^8.57.1",
"eslint-config-turbo": "^2.3.3",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"resolutions": {
"cross-spawn": "^7.0.5"
}
}