-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.7 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
88
89
90
{
"name": "@deven-org/telemetry-functions",
"version": "1.10.1",
"description": "@deven-org/telemetry-functions",
"repository": {
"type": "git",
"url": "https://github.com/deven-org/telemetry-functions.git"
},
"publishConfig": {
"@deven-org:registry": "https://npm.pkg.github.com"
},
"keywords": [
"deven",
"telemetry",
"functions",
"serverless"
],
"homepage": "https://github.com/deven-org/telemetry-functions",
"engines": {
"node": ">= 18"
},
"author": "Deven Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/deven-org/telemetry-functions/issues"
},
"bin": {
"telemetry-functions": "bin/telemetry-functions.js"
},
"scripts": {
"dev:netlify": "netlify functions:serve --port 9999",
"dev:webhook": "smee --path '/.netlify/functions/metrics' --port 9999",
"dev": "run-p dev:*",
"build": "rm -fr dist && microbundle --target node -f umd",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watch",
"test:update-snapshots": "jest -u && biome format --write .",
"doc:install": "deven-documentation-skeleton install",
"doc:check": "deven-documentation-skeleton check",
"doc:update": "deven-documentation-skeleton update",
"prepare": "husky install",
"cdk": "cdk"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.485.0",
"@netlify/functions": "^2.4.0",
"@octokit/rest": "^20.0.2",
"aws-cdk-lib": "2.118.0",
"constructs": "^10.0.0",
"dotenv": "^16.0.3",
"js-base64": "^3.7.5",
"lodash.clonedeep": "^4.5.0",
"lodash.pick": "^3.1.0",
"semver": "^7.5.4",
"signale": "^1.4.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@commitlint/config-conventional": "^18.4.3",
"@deven-org/documentation-skeleton": "^3.0.0",
"@octokit/webhooks-examples": "^7.3.1",
"@octokit/webhooks-types": "^7.3.1",
"@types/aws-lambda": "^8.10.131",
"@types/eslint": "^8.44.8",
"@types/jest": "^29.4.1",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.pick": "^4.4.9",
"@types/node": "^20.9.0",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"aws-cdk": "^2.126.0",
"eslint": "^8.55.0",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.0",
"netlify": "^13.1.11",
"netlify-cli": "^17.9.0",
"npm-run-all": "^4.1.5",
"smee-client": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.2"
}
}