-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "dynamode",
"version": "1.5.0",
"description": "Dynamode is a modeling tool for Amazon's DynamoDB",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc && tsc-alias",
"typecheck": "tsc --project tsconfig.typecheck.json",
"postbuild": "cp package.json dist && cp README.md dist && cp LICENSE dist",
"build:watch": "concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",
"test": "vitest run unit",
"test:watch": "vitest unit",
"test:e2e": "vitest run e2e --no-file-parallelism",
"test:ui": "vitest unit --ui",
"test:types": "vitest run types --typecheck",
"coverage": "vitest run unit --coverage",
"lint": "eslint lib --ext .ts,.js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"bump:patch": "npm version patch",
"bump:minor": "npm version minor",
"bump:major": "npm version major",
"bump:next": "npm version prerelease --preid rc",
"publish:next": "npm run build && cd dist && npm publish --tag next"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.474.0",
"@aws-sdk/util-dynamodb": "^3.474.0"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitest/coverage-v8": "^1.1.3",
"@vitest/ui": "^1.1.3",
"c8": "^7.13.0",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"tsc-alias": "^1.8.6",
"type-fest": "^3.10.0",
"typescript": "^5.0.4",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^1.1.3"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blazejkustra/dynamode.git"
},
"author": {
"name": "Błażej Kustra",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blazejkustra/dynamode/issues"
},
"homepage": "https://github.com/blazejkustra/dynamode#readme",
"keywords": [
"dynamodb",
"dynamo",
"aws",
"amazon",
"document",
"model",
"entity",
"schema",
"database",
"data",
"datastore",
"nosql",
"db",
"odm"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8"
}
}