This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.83 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": "jetkit",
"description": "Cloud-native serverless anti-framework",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jetbridge/jetkit-cdk.git"
},
"engines": {
"node": ">=0.14"
},
"homepage": "https://jetbridge.github.io/jetkit-cdk/",
"scripts": {
"lint": "eslint --ext .ts packages/",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "husky install",
"build": "npm run build:runtime && npm run build:cdk && tsc --build",
"build:cdk": "npm run build -w @jetkit/cdk",
"build:runtime": "npm run build -w @jetkit/cdk-runtime",
"rel:next": "npm run rel:next -w @jetkit/cdk-runtime && npm run rel:next -w @jetkit/cdk",
"start": "tsc --build --watch"
},
"author": "JetBridge Software Inc.",
"license": "MIT",
"devDependencies": {
"@ts-morph/bootstrap": "^0.9.1",
"@tsconfig/node14": "^1.0.0",
"@types/aws-lambda": "^8.10.75",
"@types/jest": "^27.0.0",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"aws-lambda": "^1.0.6",
"callsites": "^3.1.0",
"concurrently": "^6.3.0",
"constructs": "3.3.161",
"dirname-filename-esm": "^1.1.1",
"esbuild": "^0.13.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^6.0.0",
"jest": "^27.2.4",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"simple-markdown": "^0.7.3",
"ts-jest": "^27.0.5",
"ts-node": "^9.0.0",
"typedoc": "^0.22.5",
"typescript": "4.4"
},
"dependencies": {
"@jdpnielsen/http-error": "^1.2.0",
"deepmerge": "^4.2.2",
"is-plain-object": "^2.0.4",
"reflect-metadata": "^0.1.13",
"slugify": "^1.6.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"workspaces": [
"packages/*"
]
}