-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 2.13 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.13 KB
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
{
"name": "@kingdom-sdk/orm",
"version": "0.7.0",
"description": "ORM module to provide persistence to DDD applications in TypeScript through a relational database",
"keywords": [
"typescript",
"typeorm",
"sdk",
"domain-driven-design",
"ddd-architecture",
"backend-development"
],
"author": "William Abreu <william@t10.digital>",
"homepage": "https://github.com/t10d/kingdom-node-sdk-orm",
"repository": {
"type": "git",
"url": "https://github.com/t10d/kingdom-node-sdk-orm.git"
},
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"prepare": "husky install",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"check-style": "eslint . --ext .ts,.js,.json",
"check-types": "tsc",
"test": "jest",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored"
},
"lint-staged": {
"**/*.{ts,js,json}": "yarn eslint",
"src/**/*.ts": "yarn tsc-files --pretty"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.21",
"@types/object-hash": "^2.2.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"mysql": "^2.18.1",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"tsc-files": "^1.1.3",
"typescript": "<4.6.0"
},
"dependencies": {
"@kingdom-sdk/core": "0.2.0",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.45"
}
}