-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "smalsuolis-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": "yarn 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",
"cli": "moleculer connect NATS",
"lint": "eslint --ext .js,.ts .",
"lint:sarif": "set SARIF_ESLINT_EMBED=true && yarn run lint --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"dc:up": "docker-compose -p smalsuolis-api up --build -d",
"dc:down": "docker-compose -p smalsuolis-api down",
"prepare": "husky install",
"openapi-ts:boundaries": "openapi-ts -f openapi-ts.boundaries.config.ts"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@aplinkosministerija/biip-prettier-config": "^1.1.0",
"@aplinkosministerija/eslint-config-biip-api": "^1.0.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/node": "^20.12.12",
"@types/qs": "^6.9.15",
"@types/showdown": "^2.0.6",
"@types/supercluster": "^7.1.3",
"@types/transform-coordinates": "^1.0.2",
"@types/unzipper": "^0.10.9",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"prettier": "2.5.1",
"ts-node": "^10.9.2"
},
"dependencies": {
"@hey-api/openapi-ts": "^0.53.11",
"@moleculer/database": "github:ambrazasp/moleculerjs-database",
"@r2d2bzh/moleculer-cron": "^0.1.4",
"@sentry/node": "^7.114.0",
"@turf/turf": "^7.1.0",
"betterknown": "^1.0.4",
"biip-auth-nodejs": "github:DadPatch/biip-auth-nodejs",
"date-fns": "^3.3.1",
"dotenv": "^16.0.0",
"geojsonjs": "^0.1.2",
"ioredis": "^4.28.5",
"jsonwebtoken": "^9.0.0",
"knex": "2.4.0",
"lodash": "^4.17.21",
"moleculer": "^0.14.20",
"moleculer-auto-openapi": "^1.1.3",
"moleculer-db": "^0.8.17",
"moleculer-decorators": "^1.3.0",
"moleculer-http-client": "^0.4.2",
"moleculer-knex-filters": "github:DadPatch/moleculer-knex-filters",
"moleculer-postgis": "^0.3.3",
"moleculer-repl": "^0.7.4",
"moleculer-sentry": "^2.0.0",
"moleculer-web": "^0.10.4",
"nats": "^2.6.0",
"objection": "^3.0.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"postmark": "^4.0.2",
"puppeteer": "^23.6.0",
"showdown": "^2.1.0",
"supercluster": "7.1.5",
"transform-coordinates": "^1.0.0",
"typescript": "^5.4.5",
"unzipper": "^0.11.6",
"vt-pbf": "^3.1.3",
"wkx": "^0.5.0"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,html,css}": "prettier --write"
},
"eslintConfig": {
"extends": "@aplinkosministerija/eslint-config-biip-api"
}
}