-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.29 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "effect-ts",
"private": true,
"repository": "https://github.com/Effect-TS/otel.git",
"workspaces": [
"packages/*",
"incubation/*"
],
"scripts": {
"prepare": "ts-patch install -s",
"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 && ts-patch 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",
"version": "yarn install && git stage yarn.lock",
"commit": "cz",
"ets:rimraf": "cd $INIT_CWD && rimraf",
"ets:tsc": "cd $INIT_CWD && tsc",
"ets:babel": "cd $INIT_CWD && babel",
"ets:eslint": "cd $INIT_CWD && eslint",
"ets:prettier": "cd $INIT_CWD && prettier",
"ets:concurrently": "cd $INIT_CWD && concurrently",
"ets:build-utils": "cd $INIT_CWD && build-utils",
"ets:madge": "cd $INIT_CWD && madge",
"ets:ts-node": "cd $INIT_CWD && ts-node"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@effect-ts/build-utils": "^0.40.7",
"@effect-ts/core": "^0.60.5",
"@effect-ts/jest": "^0.35.2",
"@effect-ts/node": "^0.39.0",
"@effect-ts/tracing-plugin": "^0.20.0",
"@types/cpx": "^1.5.2",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-replace-import-extension": "^1.1.2",
"chalk": "^4.1.2",
"concurrently": "^7.0.0",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-codegen": "^0.16.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"fast-check": "^2.22.0",
"glob": "^7.2.0",
"grpc": "^1.24.11",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"ts-patch": "^2.0.1",
"typescript": "4.7.4",
"ultra-runner": "^3.10.5"
},
"packageManager": "yarn@3.1.0",
"resolutions": {
"eslint-plugin-codegen": "patch:eslint-plugin-codegen@0.16.1#.yarn/patches/eslint-plugin-codegen.patch"
}
}