generated from thothom/base-project-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "@thothom/dynamodb",
"version": "0.0.1",
"main": "index.js",
"types": "index.d.ts",
"license": "Apache-2.0",
"author": "Techmmunity",
"type": "module",
"description": "ThothOM Plugin For DynamoDB",
"homepage": "https://thothom.com/",
"bugs": {
"url": "https://github.com/thothom/dynamodb/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thothom/dynamodb.git"
},
"keywords": [
"orm",
"odm",
"nosql",
"dynamo",
"dynamodb",
"typeorm",
"typescript",
"database",
"data-mapper",
"object-mapper",
"thothom"
],
"peerDependencies": {
"@thothom/core": "^0.0.1",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.100.0",
"@aws-sdk/util-dynamodb": "^3.100.0",
"@techmmunity/utils": "^1.3.0"
},
"devDependencies": {
"@techmmunity/eslint-config": "^5.2.3",
"@thothom/core": "^0.0.1",
"@types/jest": "^27.5.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"scripts": {
"prepare": "husky install",
"ts-node": "ts-node",
"test": "jest",
"test:cov": "jest --coverage",
"build": "ncc build src/index.ts -o dist -s -m -e @thothom/core -e @aws-sdk/client-dynamodb -e @aws-sdk/util-dynamodb -e @techmmunity/utils",
"build:dev": "ncc build src/index.ts -o dist -s -m",
"format": "eslint . --fix --quiet",
"lint": "eslint . --quiet",
"upgrade:dependencies": "yarn upgrade-interactive --latest",
"husky:pre-commit": "tsc && lint-staged",
"lk": "yarn build:dev && cp package.json dist/package.json && cd dist && yarn link && cd ..",
"ulk": "yarn unlink && yarn lk"
}
}