-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.16 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.16 KB
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
57
58
59
60
61
62
63
64
65
{
"name": "durabletask-js-monorepo",
"version": "0.0.0",
"private": true,
"description": "Durable Task JavaScript SDK monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces",
"build:core": "npm run build -w @microsoft/durabletask-js",
"build:azuremanaged": "npm run build -w @microsoft/durabletask-js-azuremanaged",
"test": "npm run test --workspaces",
"test:unit": "npm run test:unit --workspaces --if-present",
"test:e2e": "./scripts/test-e2e.sh",
"test:e2e:internal": "jest tests/e2e --runInBand --detectOpenHandles",
"test:e2e:one": "jest tests/e2e --runInBand --detectOpenHandles --testNamePattern",
"test:e2e:azuremanaged:internal": "jest test/e2e-azuremanaged --detectOpenHandles",
"test:e2e:azuremanaged": "./scripts/test-e2e-azuremanaged.sh",
"lint": "eslint .",
"pretty": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"",
"pretty-fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"download-proto": "./scripts/download-proto.sh",
"generate-grpc": "./tools/generate-grpc-javascript.sh ./packages/durabletask-js/src/proto",
"example": "ts-node --swc"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/durabletask-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/durabletask-js/issues"
},
"homepage": "https://github.com/microsoft/durabletask-js#readme",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@swc/core": "^1.3.55",
"@swc/helpers": "^0.5.1",
"@types/jest": "^29.5.1",
"@types/node": "^22.0.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"globals": "^16.2.0",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.13.1",
"husky": "^8.0.1",
"jest": "^29.5.0",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"prettier": "^3.5.3",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
}
}