-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 3.02 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
{
"name": "dependency-injection-workshops",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r source-map-support/register ./dist/index.js",
"build": "tsc --build",
"dev": "./node_modules/.bin/tsc-watch --onSuccess \"npm start\"",
"test-lint": "./node_modules/.bin/eslint --cache --config ./eslint.json --ext .ts ./",
"lint-fix": "./node_modules/.bin/eslint --cache --config eslint.json --ext .ts --fix ./",
"test": " ./node_modules/.bin/jest --runInBand --config jest.config.json",
"d-run-command": "docker compose --verbose --env-file=.env run --service-ports $npm_config_args js sh -c \"$npm_config_command\"",
"d-test-units": "CURRENT_PROVIDER=default npm run d-run-command --command='npm run test -- --testPathIgnorePatterns=./src/tests'",
"d-test-integrations": "npm run d-run-command --command='npm run test -- --testPathPattern=./src/tests'",
"d-dev": "npm run d-run-command --command='npm run dev'",
"prepare": "husky install"
},
"dependencies": {
"axios": "1.4.0",
"express": "^4.18.2",
"http-method-enum": "^1.0.0",
"http-status-codes": "^2.2.0",
"knex": "^2.5.1",
"luxon": "^3.4.0",
"npm": "^6.13.1",
"pg": "^8.11.3",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0",
"winston": "^3.3.3",
"zod": "^3.22.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@micro-package/storyteller": "1.1.19",
"@ngneat/falso": "^7.0.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^12.0.5",
"@types/body-parser": "^1.19.0",
"@types/circular-json": "^0.4.0",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.9",
"@types/extend": "^3.0.1",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/luxon": "^3.3.1",
"@types/node": "^20.5.0",
"@types/object-path": "^0.11.1",
"@types/request-promise": "^4.1.45",
"@types/swagger-ui": "^3.52.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"body-parser": "^1.20.2",
"eslint": "^8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jose": "^2.0.6",
"jsonwebtoken": "^9.0.1",
"prettier": "^3.0.2",
"semantic-release": "^21.0.7",
"ts-jest": "^29.1.1",
"tsc-watch": "4.0.0",
"typescript": "4.7.4"
},
"author": "Łukasz Klejszta",
"license": "UNLICENSED"
}