-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "typedorm-examples",
"version": "1.0.0",
"description": "Examples of using typedorm with different technologies",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"docker:up": "docker-compose up --remove-orphans --detach",
"docker:down": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typedorm/typedorm-examples.git"
},
"author": "Rushi Patel",
"license": "ISC",
"bugs": {
"url": "https://github.com/typedorm/typedorm-examples/issues"
},
"dependencies": {
"@typedorm/common": "1.15.0-alpha.3",
"@typedorm/core": "1.15.0-alpha.3",
"onetable-cli": "^1.2.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"aws-sdk": "^2.1092.0",
"ts-node": "^10.7.0",
"typescript": "^4.0.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"gts": "^3.1.0",
"@types/node": "^14.11.2",
"@commitlint/config-conventional": "^11.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"typedorm",
"typeorm",
"DynamoDB",
"aws-dynamoDB",
"examples",
"dynamo db"
],
"homepage": "https://github.com/typedorm/typedorm-examples#readme"
}