-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.32 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
91
92
93
94
95
96
97
{
"name": "biip-gyvunai-api",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"prettier": "@aplinkosministerija/biip-prettier-config",
"scripts": {
"db:migrate": "knex migrate:latest",
"build": "tsc --build tsconfig.json",
"dev": "npm run db:migrate && ts-node ./node_modules/moleculer/bin/moleculer-runner.js --env --hot --repl --config moleculer.config.ts services/**/*.service.ts",
"start": "yarn run db:migrate --knexfile ./dist/knexfile.js && moleculer-runner --config dist/moleculer.config.js",
"test": "export DB_CONNECTION=postgresql://postgres:postgres@localhost:5331/gyvunai && npm run db:migrate && jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --ext .js,.ts .",
"dc:up": "docker compose -p biip-gyvunai-api up --build -d",
"dc:down": "docker compose -p biip-gyvunai-api down",
"dc:logs": "docker compose -p biip-gyvunai-api logs -f",
"prepare": "husky install"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@aplinkosministerija/biip-prettier-config": "^1.1.0",
"@aplinkosministerija/eslint-config-biip-api": "^1.0.0",
"@faker-js/faker": "^7.6.0",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/mime-types": "^2.1.1",
"@types/minio": "^7.0.17",
"@types/node": "^18.15.3",
"@types/qs": "^6.9.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"lint-staged": "14.0.1",
"moleculer-repl": "^0.7.3",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@aplinkosministerija/moleculer-accounts": "^1.3.0",
"@moleculer/database": "github:ambrazasp/moleculerjs-database",
"@sentry/node": "^7.68.0",
"biip-auth-nodejs": "github:DadPatch/biip-auth-nodejs",
"dotenv": "^16.0.3",
"ioredis": "^5.3.1",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"minio": "^7.1.1",
"moleculer": "^0.14.29",
"moleculer-auto-openapi": "^1.1.5",
"moleculer-db": "^0.8.23",
"moleculer-decorators": "^1.3.0",
"moleculer-knex-filters": "github:DadPatch/moleculer-knex-filters",
"moleculer-minio": "github:zeckon/moleculer-minio",
"moleculer-plantuml": "github:DadPatch/moleculer-plantuml",
"moleculer-postgis": "^0.2.7",
"moleculer-sentry": "^2.0.0",
"moleculer-web": "^0.10.5",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"nats": "^2.13.1",
"objection": "^3.0.1",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"postmark": "^4.0.2",
"transform-coordinates": "^1.0.0"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,html,css}": "prettier --write"
},
"eslintConfig": {
"extends": "@aplinkosministerija/eslint-config-biip-api"
}
}