-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "effect-ts",
"private": true,
"repository": "https://github.com/Effect-TS/amqp.git",
"workspaces": [
"packages/*",
"incubation/*"
],
"scripts": {
"prepublishOnly": "yarn prettier --write \"./packages*/*/build/**/*.ts\"",
"ci": "yarn run clean && yarn run build && yarn run tc && yarn run lint && yarn run test",
"clean": "ultra -r clean",
"build": "ultra -r build",
"test": "jest --detectOpenHandles",
"autofix": "ultra -r autofix",
"lint": "ultra -r lint",
"tc": "ultra -r tc",
"postinstall": "husky install",
"version:alpha": "lerna version prerelease --conventional-commits --preid=alpha",
"version:preminor": "lerna version preminor --conventional-commits",
"version:minor": "lerna version minor --conventional-commits",
"version:prepatch": "lerna version prepatch --conventional-commits",
"version:patch": "lerna version patch --conventional-commits",
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@effect-ts/build-utils": "^0.24.10",
"@effect-ts/core": "^0.44.10",
"@effect-ts/jest": "^0.30.0",
"@effect-ts/node": "^0.29.0",
"@effect-ts/tracing-plugin": "^0.14.10",
"@types/amqplib": "^0.8.2",
"@types/cpx": "^1.5.2",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"amqplib": "^0.8.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"chalk": "^4.1.2",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"dtslint": "github:gcanti/dtslint",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-codegen": "^0.16.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"glob": "^7.2.0",
"husky": "7.0.2",
"jest": "^27.2.4",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"reflect-metadata": "^0.1.13",
"testcontainers": "^7.21.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"ttypescript": "^1.5.12",
"typescript": "4.4.3",
"ultra-runner": "^3.10.5",
"yarn-deduplicate": "^3.0.0"
},
"dependencies": {}
}