-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
{
"name": "effect-use",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn turbo test --continue",
"build": "yarn turbo build",
"clean": "yarn turbo clean && yarn cache clean && rimraf node_modules",
"format": "yarn turbo format",
"typecheck": "yarn turbo typecheck",
"version": "yarn changeset version",
"release": "yarn workspaces foreach --from '@effect-use/*' --no-private npm publish --tolerate-republish && yarn changeset tag"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@temporalio/testing": "1.8.6",
"@temporalio/worker": "1.8.6",
"@types/jest": "^29.5.1",
"@types/node": "18",
"jest": "29.5.0",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"turbo": "1.10.13",
"typescript": "5.4.5"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"directory": ".",
"type": "git",
"url": "https://github.com/embedded-insurance/effect-use.git"
},
"resolutions": {
"effect": "3.2.5",
"@effect/schema": "0.67.14",
"@temporalio/activity": "1.8.6",
"@temporalio/worker": "1.8.6",
"@temporalio/workflow": "1.8.6",
"@temporalio/client": "1.8.6"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"dependencies": {
"@effect/schema": "0.67.14",
"effect": "3.2.5"
}
}