-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "@elg/gent",
"version": "0.1.0",
"description": "Reusable business logic base layer for GraphQL API servers written in TypeScript+Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gentgen": "dist/cli/gentgen.js"
},
"repository": "git@github.com:taneliang/gent.git",
"author": "E-Liang Tan <eliang@eliangtan.com>",
"license": "MIT",
"engines": {
"node": ">=12.4.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.dist.json && chmod +x dist/cli/gentgen.js",
"build:watch": "nodemon -w ./src -e ts -x yarn build",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"lint": "yarn lint:code && yarn lint:misc",
"lint:code": "eslint src ./*.js",
"lint:code:fix": "yarn lint:code --fix",
"lint:misc": "prettier --check './*.{js,json,md}'",
"lint:misc:fix": "yarn lint:misc --write",
"prepare": "yarn clean && yarn build"
},
"peerDependencies": {
"mikro-orm": "3.x",
"ts-node": ">=8",
"typescript": ">=3.9.0"
},
"dependencies": {
"@elg/tscodegen": "^0.2.0",
"commander": "^5.1.0",
"dataloader": "^2.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.155",
"@types/mock-fs": "^4.10.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"codecov": "^3.7.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.0.1",
"jest-junit": "^11.0.0",
"mikro-orm": "^3.6.15",
"mock-fs": "^4.12.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"sqlite3": "^4.2.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"keywords": [
"codegen",
"typescript",
"orm"
]
}