-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"private": true,
"scripts": {
"unit": "jest apps/**/__tests__/unit --coverage",
"lint": "eslint '*.ts' --quiet --fix",
"compile": "tsc",
"test": "npm run compile && npm run unit",
"cicd": "ts-node cicd/deploy.ts"
},
"dependencies": {
"@faker-js/faker": "7.6.0",
"chance": "1.1.11",
"esbuild": "0.17.11",
"tiny-invariant": "1.3.1"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "3.284.0",
"@types/aws-lambda": "8.10.111",
"@types/chance": "1.1.3",
"@types/jest": "29.4.0",
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"aws-sdk": "2.1330.0",
"esbuild-jest": "0.5.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.5.0",
"prettier": "2.8.4",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}