-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.66 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "service-engine",
"version": "1.9.1",
"description": "Microservice Framework for publishing REST, GraphQL & gRPC Services that provide CRUD functionality to Database Resources (tables, views, materialized views).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -R lib/ && npx tsc",
"lint": "npm run lint:prettier && npm run lint:tslint",
"lint:fix": "npm run lint:prettier:fix && npm run lint:tslint:fix",
"lint:prettier": "npx prettier -l 'src/**/*.ts'",
"lint:prettier:fix": "npx prettier --write 'src/**/*.ts'",
"lint:tslint": "npx tslint -p tsconfig.json",
"lint:tslint:fix": "npx tslint -p tsconfig.json --fix",
"test": "mocha --timeout 25000 --exit -r ts-node/register -- \"src/**/*.spec.ts\"",
"test:coverage": "nyc mocha --timeout 25000 --exit -r ts-node/register -- \"src/**/*.spec.ts\"",
"bake": "npm run lint:fix && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudowing/service-engine.git"
},
"author": "open-source@joewingard.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/sudowing/service-engine/issues"
},
"homepage": "https://github.com/sudowing/service-engine#readme",
"files": [
"lib/**/*"
],
"dependencies": {
"@graphql-modules/core": "^0.7.17",
"@grpc/grpc-js": "^1.3.6",
"@grpc/proto-loader": "^0.5.5",
"@koa/router": "^8.0.8",
"@types/chai": "^4.2.11",
"@types/graphql": "^14.5.0",
"@types/graphql-fields": "^1.3.2",
"@types/js-yaml": "^3.12.2",
"@types/knex-postgis": "^0.2.3",
"@types/koa": "^2.11.2",
"@types/koa-router": "^7.4.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.6",
"@types/sinon": "^7.5.2",
"apollo-server-koa": "^2.13.1",
"bunyan": "^1.8.12",
"change-case": "^4.1.1",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.1",
"http-status": "^1.4.2",
"http-status-codes": "^1.4.0",
"install": "^0.13.0",
"joi": "^17.3.0",
"joi-to-swagger": "^4.0.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.13",
"knex-postgis": "^0.11.0",
"koa": "^2.11.0",
"koa-compress": "^4.0.1",
"koa-router": "^8.0.8",
"lodash": "^4.17.20",
"sqlite3": "^5.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"uuid": "^7.0.2",
"wkx": "^0.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"sinon": "^9.0.1",
"tslint": "^6.1.0"
},
"bundledDependencies": [
"knex",
"knex-postgis",
"pg"
]
}