-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.37 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
70
71
72
73
74
75
76
{
"name": "pg-graphql-typeorm",
"version": "0.5.0",
"description": "Easily generate graphql typeorm entities with one command",
"repository": "github:cellis/pg-graphql-typeorm",
"main": "./lib/index.js",
"author": "Cameron Ellis",
"license": "MIT",
"private": false,
"bin": {
"ftl": "dist/cli.js"
},
"scripts": {
"build": "tsc --skipLibCheck --p tsconfig.build.json",
"build:webpack": "yarn webpack",
"test:watch": "yarn fixtures:create && jest --watch ; yarn fixtures:drop",
"test": "yarn fixtures:create && jest ; yarn fixtures:drop",
"fixtures:create": "ts-node --files ./lib/scripts/createDatabase.ts",
"fixtures:drop": "ts-node --files ./lib/scripts/dropDatabase.ts",
"test:update": "yarn fixtures:create && jest -u ; yarn fixtures:drop",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/mock-fs": "^4.13.0",
"@types/node": "^18.15.12",
"@types/pg": "^7.14.11",
"@types/pluralize": "^0.0.29",
"@types/q": "^1.5.4",
"@types/signal-exit": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"mock-argv": "^1.1.13",
"mock-fs": "^4.13.0",
"mock-stdin": "^1.0.0",
"prettier": "^2.2.1",
"quicktype-core": "^6.0.70",
"sequelize": "^6.6.0",
"shebang-loader": "^0.0.1",
"signal-exit": "^3.0.3",
"ts-declaration-webpack-plugin": "^1.2.3",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^4.6.0",
"webpack-cli": "^4.6.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@wmfs/pg-info": "^1.19.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"dedent": "^0.7.0",
"figlet": "^1.5.0",
"lodash": "^4.17.21",
"path": "^0.12.7",
"pg": "^8.5.1",
"pgtools": "^0.3.1",
"pluralize": "^8.0.0",
"q": "^1.5.1",
"typeorm": "^0.2.31",
"typescript-require": "^0.3.0",
"yargs": "^16.2.0"
}
}