-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.87 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": "risr-api",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"build": "tsc --build tsconfig.json",
"dev": "ts-node ./node_modules/moleculer/bin/moleculer-runner.js --env --hot --repl --config moleculer.config.ts services/**/*.service.ts",
"start": "moleculer-runner --config dist/moleculer.config.js",
"cli": "moleculer connect NATS",
"ci": "jest --watch",
"test": "jest --coverage --passWithNoTests",
"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 risr-api up --build -d",
"dc:logs": "docker-compose -p risr-api logs -f",
"dc:down": "docker-compose -p risr-api down"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@types/lodash": "^4.14.178",
"@types/qs": "^6.9.7",
"@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",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"moleculer-repl": "^0.7.0",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0"
},
"dependencies": {
"@faker-js/faker": "^6.0.0-alpha.7",
"@moleculer/database": "github:ambrazasp/moleculerjs-database",
"@sentry/node": "^7.61.0",
"@types/ejs": "^3.1.2",
"@types/jest": "^27.4.0",
"@types/mime-types": "^2.1.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^20.3.3",
"biip-auth-nodejs": "github:DadPatch/biip-auth-nodejs",
"bullmq": "^4.6.0",
"dotenv": "^16.0.0",
"ejs": "^3.1.9",
"ioredis": "^4.28.5",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mkdirp": "^1.0.4",
"moleculer": "^0.14.20",
"moleculer-auto-openapi": "^1.1.3",
"moleculer-decorators": "^1.3.0",
"moleculer-knex-filters": "github:DadPatch/moleculer-knex-filters",
"moleculer-postgis": "^0.1.0",
"moleculer-sentry": "^2.0.0",
"moleculer-web": "^0.10.4",
"moment": "^2.29.4",
"nats": "^2.6.0",
"objection": "^3.0.1",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"redlock": "^4.2.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/*.spec.(ts|js)"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}