-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "lambda-billing-api",
"version": "2.0.0",
"description": "Poll tasks in toggl by tag and aggregate billed hours",
"private": false,
"main": "serverless.ts",
"scripts": {
"lint": "prettier --write **/*",
"test": "npm run lint && npm run type-check && npm run jest",
"start:offline": "DEBUG=true serverless offline --httpPort 6060 start",
"jest": "jest",
"jest:watch": "jest --watch",
"deploy": "serverless deploy --conceal",
"type-check": "tsc --noEmit",
"update-customer-meta": "ts-node src/bin/update-customers.ts"
},
"keywords": [],
"author": "jroehl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@serverless/typescript": "^2.52.1",
"@types/aws-lambda": "^8.10.70",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.7",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"json-schema-to-ts": "^1.5.0",
"prettier": "^2.2.1",
"puppeteer": "^10.1.0",
"serverless": "^3.14.0",
"serverless-domain-manager": "^5.1.0",
"serverless-offline": "^8.7.0",
"serverless-plugin-aws-alerts": "^1.6.1",
"serverless-webpack": "^5.3.5",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"webpack": "^5.12.3",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^15.11.1",
"@middy/core": "^2.5.7",
"@middy/http-error-handler": "^2.5.7",
"@middy/http-json-body-parser": "^2.5.7",
"@middy/validator": "^2.5.7",
"aws-sdk": "^2.824.0",
"chrome-aws-lambda": "^10.0.0",
"contentful": "^9.0.3",
"contentful-management": "^7.42.0",
"form-data": "^4.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"puppeteer-core": "^10.1.0",
"source-map-support": "^0.5.19"
}
}