-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"private": true,
"scripts": {
"dev": "turbo run build --filter=std -- --watch",
"dev:docs": "turbo run dev --filter=docs",
"test": "turbo run test --filter=std",
"test:w": "pnpm --filter=@opentf/std run test:w",
"test:b": "pnpm --filter=@opentf/std run test:b",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint --filter=std",
"build": "turbo run build --filter=std",
"build:docs": "turbo run build --filter=docs",
"ci": "turbo run ci --filter=std",
"prepare": "husky install",
"publish-packages": "turbo run build lint test --filter=std && changeset version && changeset publish"
},
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{ts,tsx}": [
"pnpm run format"
],
"*.json": [
"npm run format"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"clone-deep": "^4.0.1",
"dequal": "^2.0.3",
"fast-copy": "^3.0.2",
"fast-deep-equal": "^3.1.3",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"moderndash": "^3.11.0",
"ramda": "^0.29.1",
"remeda": "^1.48.0",
"tinybench": "^2.6.0",
"turbo": "^1.12.2"
}
}