-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 864 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 864 Bytes
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
{
"name": "lambda",
"version": "1.0.0",
"author": "Bruno Papa <bruno.papa@hotmail.com>",
"private": true,
"license": "MIT",
"engines": {
"node": "14.x"
},
"packageManager": "npm@10.9.0",
"scripts": {
"build": "npx tsc",
"local": "docker build --platform linux/arm64 -t rtv . && docker run --rm -p 8080:8080 rtv",
"test": "DEBUG='app:*,test:*' npx jest --config jest.config.js",
"test:cov": "npx jest --config jest.config.js --coverage",
"typesync": "npx typesync"
},
"dependencies": {
"debug": "^2.6.9",
"dotenv": "^8.2.0",
"fp-ts": "^2.9.5",
"joi": "^17.4.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.72",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.10",
"@types/node": "^14.14.35",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.5"
}
}