-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "single-table-dynamo",
"version": "9.0.10",
"license": "MIT",
"author": "",
"homepage": "http://github.com/jeffreyyoung/single-table-dynamo",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.prod.json",
"test": "jest",
"tdd": "jest --watchAll",
"dev": "jest --watchAll --verbose",
"lint": "eslint .",
"deploy": "yarn test && yarn lint --quiet && yarn build && yarn publish"
},
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.395.0",
"@aws-sdk/lib-dynamodb": "^3.395.0",
"@types/jest": "^28",
"@types/node": "^18",
"@types/sinon": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"dataloader": "^2.2.2",
"eslint": "^8.40.0",
"expect-type": "^0.13.0",
"jest": "^28.1.1",
"jest-dynalite": "^3.6.0",
"sinon": "^9.2.1",
"tozod": "^3.0.0",
"ts-jest": "^28.0.4",
"typescript": "^4.9.5",
"zod": "^3.21.0"
},
"peerDependencies": {
"dataloader": "2.2.2",
"zod": "^3.21.0"
}
}