-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 2.32 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
57
58
59
60
61
62
63
64
{
"name": "@microsoft/durabletask-js",
"version": "0.1.0-alpha.2",
"description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine",
"types": "./build/index.d.ts",
"scripts": {
"test": "jest --runInBand --detectOpenHandles",
"test:unit": "jest test/unit --runInBand --detectOpenHandles",
"test:unit:one": "jest test/unit --runInBand --detectOpenHandles --testNamePattern",
"test:e2e:internal": "jest test/e2e --runInBand --detectOpenHandles",
"test:e2e": "./scripts/test-e2e.sh",
"test:e2e:one": "jest test/e2e --runInBand --detectOpenHandles --testNamePattern",
"start": "ts-node --swc ./src/index.ts",
"example": "ts-node --swc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"dev": "nodemon --watch './src/**/*.ts' --exec 'ts-node --swc' ./src/index.ts",
"pretty": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"",
"pretty-fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prebuild": "./scripts/prebuild.sh",
"build": "npm install && npm run lint && npm run pretty && ./scripts/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/durabletask-js.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/durabletask-js/issues"
},
"homepage": "https://github.com/microsoft/durabletask-js#readme",
"devDependencies": {
"@swc/core": "^1.3.55",
"@swc/helpers": "^0.5.1",
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.15",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"grpc_tools_node_protoc_ts": "^5.3.3",
"husky": "^8.0.1",
"jest": "^29.5.0",
"nodemon": "^3.1.4",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.3",
"readline-sync": "^1.4.10",
"regenerator-runtime": "^0.13.11",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.14",
"google-protobuf": "^3.21.2"
}
}