-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@shelf/dynamodb-query-optimized",
"version": "2.1.0",
"description": "2x faster DynamoDB queries when you need to query 2+ MB of data",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "vlad@shelf.io",
"url": "https://shelf.io"
},
"main": "lib",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && yarn build:types && yarn build:code",
"build:code": "babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts' && find ./lib -name '*.test.d.ts' -delete",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --quiet",
"prepack": "yarn build",
"test": "export ENVIRONMENT=local && jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{js,ts,json}": [
"eslint --fix"
]
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"prettier": "@shelf/prettier-config",
"jest": {
"preset": "@shelf/jest-dynamodb"
},
"dependencies": {
"@shelf/aws-ddb-with-xray": "2.1.0",
"lodash": "4.17.21",
"p-map": "4.0.0"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@shelf/babel-config": "1.0.2",
"@shelf/eslint-config": "4.2.1",
"@shelf/jest-dynamodb": "3.4.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.11",
"@types/jest": "28.1.8",
"@types/lodash": "4.17.13",
"@types/node": "18",
"eslint": "9.17.0",
"husky": "8.0.3",
"jest": "28.1.3",
"lint-staged": "13.3.0",
"prettier": "3.4.2",
"typescript": "4.9.5"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.x.x",
"@aws-sdk/lib-dynamodb": "3.x.x"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}