-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "logtail-lambda-extension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.0.0"
},
"scripts": {
"build": "rimraf ./dist && pnpm test && ts-node ./scripts/build.ts",
"test": "jest",
"format": "prettier --ignore-path=.gitignore --check .",
"format:fix": "prettier --ignore-path=.gitignore --write .",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"type-check": "tsc --noEmit",
"validate": "pnpm run lint && pnpm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fp-ts": "^2.13.1",
"node-fetch": "^3.3.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.0.0",
"archiver": "^5.3.1",
"esbuild": "^0.15.16",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}