-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "simple-qnudge",
"version": "1.0.0",
"description": "",
"main": "none.ts",
"scripts": {
"simple": "npx tsc && node build/simple.js | pino-pretty",
"nudge": "npx tsc && node build/main.js | pino-pretty",
"get": "get() { npx tsc && node build/get_run.js \"$@\" | pino-pretty; }; get",
"get_full_run": "get() { npx tsc && node build/get_full_run.js \"$@\" | pino-pretty; }; get",
"format": "prettier 'src/**/*.ts' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.245.0",
"@aws-sdk/lib-dynamodb": "^3.245.0",
"@aws-sdk/util-dynamodb": "^3.245.0",
"@cuvva/ksuid": "^1.0.2",
"@types/humanize-duration": "^3.27.1",
"aws-xray-sdk": "^3.4.1",
"humanize-duration": "^3.27.3",
"pino": "^8.8.0",
"pretty-bytes": "^5.6.0",
"typescript": "^4.9.4",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.19",
"pino-pretty": "^9.1.1",
"prettier": "2.8.1"
}
}