This repository was archived by the owner on Oct 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 KB
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
{
"name": "@macai-tech/framework-node",
"version": "1.4.2-beta.118",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/macai-project/framework-node.git"
},
"author": "Giovanni Giordano <giovanni.giordano@macaiapp.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"release": "release-it",
"format": "prettier --write 'src/**/*.ts'",
"test": "jest --config=jest.config.js --passWithNoTests",
"test:w": "jest --config=jest.config.js --passWithNoTests --watch",
"compile": "tsc --noEmit --project tsconfig.json",
"compile:w": "tsc --noEmit --watch --project tsconfig.json",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-eventbridge": "^3.47.0",
"@sentry/serverless": "^6.13.3",
"aws-sdk": "^2.1048.0",
"aws-xray-sdk": "^3.3.3",
"cross-fetch": "^3.1.4",
"fp-ts": "^2.11.5",
"graphql": "15.7.0",
"io-ts": "^2.2.16",
"mysql": "^2.18.1",
"pino": "^7.10.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.4",
"husky": "^8.0.0",
"io-ts-types": "^0.3.5",
"jest": "^27.4.5",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"ts-jest": "^27.1.2",
"typescript": "^4.4.3"
},
"bugs": {
"url": "https://github.com/macai-project/framework-node/issues"
},
"homepage": "https://github.com/macai-project/framework-node#readme",
"description": "Minimalist framework for AWS Lambda in NodeJS used in Macai",
"files": [
"dist",
"package.json"
],
"lint-staged": {
"*.ts": "prettier --write"
}
}