-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "pact-toolbox-root",
"version": "0.0.0",
"description": "A tool to help you build, test and deploy your Pact smart contracts",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "turbo lint",
"verify": "turbo verify",
"precommit": "turbo precommit",
"postinstall": "husky install",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:publish": "changeset publish"
},
"license": "MIT",
"dependencies": {
"husky": "^9.0.11",
"prettier": "^3.2.5",
"turbo": "^1.13.2",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=21.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"pact-toolbox": "workspace:*",
"tsx": "^4.7.3"
},
"pnpm": {
"overrides": {
"pact-toolbox": "workspace:*",
"whatwg-url": "^14.0.0"
}
}
}