|
1 | | -{ |
2 | | - "name": "durabletask-js-monorepo", |
3 | | - "version": "0.0.0", |
4 | | - "private": true, |
5 | | - "description": "Durable Task JavaScript SDK monorepo", |
6 | | - "workspaces": [ |
7 | | - "packages/*" |
8 | | - ], |
9 | | - "scripts": { |
10 | | - "build": "npm run build --workspaces", |
11 | | - "build:core": "npm run build -w @microsoft/durabletask-js", |
12 | | - "build:azuremanaged": "npm run build -w @microsoft/durabletask-js-azuremanaged", |
13 | | - "test": "npm run test --workspaces", |
14 | | - "test:unit": "npm run test:unit --workspaces --if-present", |
15 | | - "test:e2e": "./scripts/test-e2e.sh", |
16 | | - "test:e2e:internal": "jest tests/e2e --runInBand --detectOpenHandles", |
17 | | - "test:e2e:one": "jest tests/e2e --runInBand --detectOpenHandles --testNamePattern", |
18 | | - "lint": "eslint . --ext .js,.jsx,.ts,.tsx", |
19 | | - "pretty": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"", |
20 | | - "pretty-fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"", |
21 | | - "download-proto": "./scripts/download-proto.sh", |
22 | | - "generate-grpc": "./tools/generate-grpc-javascript.sh ./packages/durabletask-js/src/proto", |
23 | | - "example": "ts-node --swc" |
24 | | - }, |
25 | | - "engines": { |
26 | | - "node": ">=22.0.0" |
27 | | - }, |
28 | | - "repository": { |
29 | | - "type": "git", |
30 | | - "url": "git+https://github.com/microsoft/durabletask-js.git" |
31 | | - }, |
32 | | - "license": "MIT", |
33 | | - "bugs": { |
34 | | - "url": "https://github.com/microsoft/durabletask-js/issues" |
35 | | - }, |
36 | | - "homepage": "https://github.com/microsoft/durabletask-js#readme", |
37 | | - "devDependencies": { |
38 | | - "@swc/core": "^1.3.55", |
39 | | - "@swc/helpers": "^0.5.1", |
40 | | - "@types/jest": "^29.5.1", |
41 | | - "@types/node": "^18.16.1", |
42 | | - "@typescript-eslint/eslint-plugin": "^5.1.0", |
43 | | - "@typescript-eslint/parser": "^5.1.0", |
44 | | - "dotenv": "^17.2.3", |
45 | | - "eslint": "^8.1.0", |
46 | | - "eslint-config-prettier": "^8.5.0", |
47 | | - "eslint-plugin-header": "^3.1.1", |
48 | | - "eslint-plugin-prettier": "^4.2.1", |
49 | | - "grpc_tools_node_protoc_ts": "^5.3.3", |
50 | | - "grpc-tools": "^1.13.1", |
51 | | - "husky": "^8.0.1", |
52 | | - "jest": "^29.5.0", |
53 | | - "nodemon": "^3.1.4", |
54 | | - "prettier": "^2.4.0", |
55 | | - "pretty-quick": "^3.1.3", |
56 | | - "ts-jest": "^29.1.0", |
57 | | - "ts-node": "^10.9.1", |
58 | | - "typescript": "^5.0.4" |
59 | | - } |
60 | | -} |
| 1 | +{ |
| 2 | + "name": "durabletask-js-monorepo", |
| 3 | + "version": "0.0.0", |
| 4 | + "private": true, |
| 5 | + "description": "Durable Task JavaScript SDK monorepo", |
| 6 | + "workspaces": [ |
| 7 | + "packages/*" |
| 8 | + ], |
| 9 | + "scripts": { |
| 10 | + "build": "npm run build --workspaces", |
| 11 | + "build:core": "npm run build -w @microsoft/durabletask-js", |
| 12 | + "build:azuremanaged": "npm run build -w @microsoft/durabletask-js-azuremanaged", |
| 13 | + "test": "npm run test --workspaces", |
| 14 | + "test:unit": "npm run test:unit --workspaces --if-present", |
| 15 | + "test:e2e": "./scripts/test-e2e.sh", |
| 16 | + "test:e2e:internal": "jest tests/e2e --runInBand --detectOpenHandles", |
| 17 | + "test:e2e:one": "jest tests/e2e --runInBand --detectOpenHandles --testNamePattern", |
| 18 | + "test:e2e:azuremanaged:internal": "jest test/e2e-azuremanaged --runInBand --detectOpenHandles", |
| 19 | + "test:e2e:azuremanaged": "./scripts/test-e2e-azuremanaged.sh", |
| 20 | + "lint": "eslint . --ext .js,.jsx,.ts,.tsx", |
| 21 | + "pretty": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"", |
| 22 | + "pretty-fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"", |
| 23 | + "download-proto": "./scripts/download-proto.sh", |
| 24 | + "generate-grpc": "./tools/generate-grpc-javascript.sh ./packages/durabletask-js/src/proto", |
| 25 | + "example": "ts-node --swc" |
| 26 | + }, |
| 27 | + "engines": { |
| 28 | + "node": ">=22.0.0" |
| 29 | + }, |
| 30 | + "repository": { |
| 31 | + "type": "git", |
| 32 | + "url": "git+https://github.com/microsoft/durabletask-js.git" |
| 33 | + }, |
| 34 | + "license": "MIT", |
| 35 | + "bugs": { |
| 36 | + "url": "https://github.com/microsoft/durabletask-js/issues" |
| 37 | + }, |
| 38 | + "homepage": "https://github.com/microsoft/durabletask-js#readme", |
| 39 | + "devDependencies": { |
| 40 | + "@swc/core": "^1.3.55", |
| 41 | + "@swc/helpers": "^0.5.1", |
| 42 | + "@types/jest": "^29.5.1", |
| 43 | + "@types/node": "^18.16.1", |
| 44 | + "@typescript-eslint/eslint-plugin": "^5.1.0", |
| 45 | + "@typescript-eslint/parser": "^5.1.0", |
| 46 | + "dotenv": "^17.2.3", |
| 47 | + "eslint": "^8.1.0", |
| 48 | + "eslint-config-prettier": "^8.5.0", |
| 49 | + "eslint-plugin-header": "^3.1.1", |
| 50 | + "eslint-plugin-prettier": "^4.2.1", |
| 51 | + "grpc_tools_node_protoc_ts": "^5.3.3", |
| 52 | + "grpc-tools": "^1.13.1", |
| 53 | + "husky": "^8.0.1", |
| 54 | + "jest": "^29.5.0", |
| 55 | + "nodemon": "^3.1.4", |
| 56 | + "prettier": "^2.4.0", |
| 57 | + "pretty-quick": "^3.1.3", |
| 58 | + "ts-jest": "^29.1.0", |
| 59 | + "ts-node": "^10.9.1", |
| 60 | + "typescript": "^5.0.4" |
| 61 | + } |
| 62 | +} |
0 commit comments