-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 995 Bytes
/
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
{
"name": "nest-onetable",
"version": "0.0.5",
"private": false,
"license": "MIT",
"repository": {
"url": "https://github.com/onhate/nest-onetable.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nestjs",
"nest.js",
"typescript",
"decorator",
"onetable",
"dynamodb"
],
"scripts": {
"build": "tsc --project tsconfig-build.json",
"prebuild": "npx rimraf dist",
"prepublishOnly": "npm run build",
"lint": "eslint \"{src}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"dependencies": {
"@nestjs/core": "^10.2.10",
"dynamodb-onetable": "^2.7.1"
},
"devDependencies": {
"@nestjs/cli": "^10.2.1",
"@nestjs/testing": "^10.2.10",
"@shelf/jest-dynamodb": "^3.4.2",
"@types/jest": "^29.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}