-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.15 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
{
"name": "mionkit",
"description": "mion is framework to build type safe APIs at the speed of light",
"version": "0.1.0",
"main": "index.js",
"homepage": "https://github.com/MionKit/mion#readme",
"scripts": {
"test": "lerna run test",
"format": "prettier --write packages/**/*.{ts,md}",
"check-format-pre-commit": "CI=true prettier --check packages/**/*.{ts,md}",
"lint": "lerna run lint",
"lint-pre-commit": "CI=true lerna run lint -- --quiet",
"build": "lerna run build",
"clean": "lerna run clean && nx reset && jest --clearCache",
"deepkit-install": "deepkit-type-install",
"auto-readme": "embedme README.md && lerna run auto-readme",
"npm-publish": "lerna publish from-package --no-private",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com:MionKit/mion.git"
},
"keywords": [
"typescript",
"API",
"RPC",
"json",
"schema",
"generate",
"server",
"serverless",
"framework",
"node"
],
"author": "ma-jerez",
"license": "MIT",
"bugs": {
"url": "https://github.com/MionKit/issues"
},
"engines": {
"node": ">= 20.0.0"
},
"devDependencies": {
"@deepkit/core": "1.0.1-alpha.114",
"@deepkit/type-compiler": "1.0.1-alpha.117",
"@types/aws-lambda": "^8.10.108",
"@types/jest": "^29.5.3",
"@types/node": "^18.17.0",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"embedme": "^1.22.1",
"eslint": "^8.46.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.1",
"jest": "^29.6.2",
"lerna": "7.1.5",
"nx": ">=16.5.1 < 17",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1"
},
"workspaces": [
"packages/aws",
"packages/gcloud",
"packages/bun",
"packages/core",
"packages/common",
"packages/quick-start",
"packages/runtype",
"packages/reflection",
"packages/router",
"packages/http",
"packages/serverless",
"packages/client",
"packages/codegen"
],
"dependencies": {
"typescript": "^5.3.3"
}
}