-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.63 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
{
"name": "@rotorsoft/eventually-monorepo",
"description": "pnpm monorepo covering *eventually* libs and sample services",
"version": "1.0.0",
"author": {
"name": "rotorsoft",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rotorsoft/eventually-monorepo.git"
},
"bugs": {
"url": "https://github.com/rotorsoft/eventually-monorepo/issues"
},
"homepage": "https://github.com/rotorsoft/eventually-monorepo#readme",
"scripts": {
"dev": "sh ./scripts/dev.sh",
"clinic": "sh ./scripts/clinic.sh",
"clean": "sh ./scripts/clean.sh",
"build": "pnpm -r build",
"test": "pnpm jest",
"lint": "pnpm eslint '**/src/**/*.ts'",
"pretty": "pnpm prettier --check '**/src/*.{ts,js,json,css,md,yaml,yml}'",
"fix": "pnpm lint --fix && pnpm pretty --write --ignore-path ./.prettierignore",
"bump": "sh ./scripts/bump.sh",
"publish": "sh ./scripts/publish.sh",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"generic-service": "node ./node_modules/@rotorsoft/eventually-service-expg/dist/index.js",
"gendocs": "npx typedoc"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/chance": "^1.1.6",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.6",
"@types/http-cache-semantics": "^4.0.4",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.4.2",
"@types/minimist": "^1.2.5",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chance": "^1.1.12",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.26.11",
"typescript": "^5.7.3"
},
"dependencies": {
"@rotorsoft/eventually": "workspace:^",
"@rotorsoft/eventually-express": "workspace:^",
"@rotorsoft/eventually-openapi": "workspace:^",
"@rotorsoft/eventually-pg": "workspace:^",
"@rotorsoft/eventually-trpc": "workspace:^"
},
"eventually": {
"store": "calculator",
"artifacts": {
"@rotorsoft/calculator-artifacts": [
{
"name": "CalculatorTotals",
"scope": "public"
},
{
"name": "PressKeyAdapter"
}
]
}
}
}