-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 3.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@mojaloop/reporting-hub-bop-api-svc",
"version": "2.0.3",
"description": "Reporting API",
"scripts": {
"postinstall__new": "patch-package",
"test": "npm run test:unit",
"test:unit": "npx jest --testMatch='**/test/unit/**/*.test.ts' --reporters=default",
"dev": "cross-env NODE_ENV=default tsnd --no-notify --respawn --transpile-only ./src",
"generate_": "npm -s run generate:prisma && npm -s run generate:nexus",
"generate": "npm run -s mergePrisma && npm -s run generate:prisma && npm -s run generate:nexus",
"mergePrisma": "node mergePrisma && prisma format --schema src/generated/centralLedger.prisma && prisma format --schema src/generated/eventStore.prisma",
"generate:nexus": "ts-node --transpile-only ./src/schema",
"generate:prisma": "prisma generate --schema src/generated/centralLedger.prisma && prisma generate --schema src/generated/eventStore.prisma",
"__prisma:validate": "prisma validate --schema prisma/base/centralLedger.prisma && prisma validate --schema prisma/base/eventStore.prisma",
"prisma:format": "prisma format --schema prisma/base/centralLedger.prisma && prisma format --schema prisma/overlays/centralLedger.prisma",
"prisma:pull": "prisma db pull --schema prisma/base/centralLedger.prisma",
"build": "npm -s run clean && npm -s run generate && tsc",
"clean": "rimraf dist",
"start": "cross-env NODE_ENV=default ts-node --transpile-only ./src",
"start_": "cross-env NODE_ENV=production node dist/src/index.js",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/reporting-hub-bop-api-svc.git"
},
"author": "Yevhen Kyriukha <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/reporting-hub-bop-api-svc/issues"
},
"homepage": "https://github.com/mojaloop/reporting-hub-bop-api-svc#readme",
"devDependencies": {
"@types/convict": "6.1.1",
"@types/cors": "2.8.13",
"@types/jest": "27.4.0",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"audit-ci": "6.6.1",
"eslint": "8.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.7",
"nodemon": "2.0.14",
"prettier": "2.5.1",
"supertest": "6.2.1",
"ts-jest": "27.1.2",
"ts-node-dev": "1.1.8"
},
"dependencies": {
"@apollo/server": "4.6.0",
"@apollo/server-plugin-landing-page-graphql-playground": "4.0.0",
"@mojaloop/central-services-logger": "10.6.2",
"@ory/keto-client": "0.6.0-alpha.6",
"@prisma/client": "4.16.2",
"axios": "0.24.0",
"body-parser": "1.20.2",
"connection-string": "4.3.6",
"convict": "6.2.4",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dataloader": "2.0.0",
"dotenv": "11.0.0",
"env-var": "7.1.1",
"express": "4.18.2",
"graphql": "16.6.0",
"graphql-middleware": "6.1.33",
"graphql-parse-resolve-info": "4.13.0",
"graphql-scalars": "1.21.3",
"graphql-shield": "7.6.5",
"js-yaml": "4.1.0",
"mongodb": "4.3.0",
"nexus": "1.3.0",
"patch-package": "6.4.7",
"prisma": "4.16.2",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.5.4",
"winston": "3.4.0"
}
}