-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
134 lines (134 loc) · 4.38 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@windingtree/lpms-server",
"version": "0.0.0-semantic-release",
"description": "Light PMS server for stays videre implementation",
"repository": {
"url": "https://github.com/windingtree/lpms-server.git",
"type": "git"
},
"homepage": "https://windingtree.com/",
"keywords": [
"pms",
"p2p",
"windingtree",
"markets",
"stays"
],
"license": "MIT",
"main": "./dist/esm/src/index.js",
"types": "./dist/esm/src/index.d.ts",
"scripts": {
"commit": "git-cz -S",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"dev": "cross-env nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/index.ts",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"test": "NODE_IS_TEST=true npx mocha --maxWorkers=15 -r ts-node/register test/**/*.*-spec.ts",
"test:integration": "NODE_IS_TEST=true npx mocha --maxWorkers=15 -r ts-node/register test/**/*.integration-spec.ts",
"test:unittests": "NODE_IS_TEST=true npx mocha --maxWorkers=15 -r ts-node/register test/**/*.unittest-spec.ts",
"clean": "rm -rf dist",
"coverage": "c8 --all --exclude typechain* --exclude coverage --exclude dist --exclude src/proto* --exclude test npm test && c8 report --all --exclude typechain* --exclude coverage --exclude dist --exclude test --exclude src/proto* -r html",
"build": "yarn clean && yarn tsc -p tsconfig-build.json",
"prepare": "husky install",
"start": "node --experimental-specifier-resolution=node ./dist/esm/src/index.js"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/yamljs": "^0.2.31",
"@web-std/file": "^3.0.2",
"@windingtree/glider-types": "^4.4.0",
"@windingtree/win-commons": "^1.13.0",
"@windingtree/win-pay": "^1.8.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"big.js": "^6.2.1",
"bullmq": "^1.90.1",
"circle-to-polygon": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"currency-codes": "^2.1.0",
"dotenv": "^16.0.1",
"ethers": "^5.7.1",
"express": "^4.18.1",
"express-openapi-validator": "^4.13.8",
"express-rate-limit": "^6.4.0",
"form-data": "^4.0.0",
"helmet": "^5.1.0",
"jira.js": "^2.15.10",
"jsonwebtoken": "^8.5.1",
"kleur": "^4.1.5",
"level": "^8.0.0",
"level-ts": "^2.1.0",
"luxon": "^2.4.0",
"mongodb": "4.8.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"prom-client": "^14.0.1",
"redis": "^4.5.0",
"response-time": "^2.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/bcrypt": "^5.0.0",
"@types/big.js": "^6.1.6",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/luxon": "^2.3.2",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.18",
"@types/response-time": "^2.3.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@windingtree/org.id-auth": "1.0.0-beta.47",
"@windingtree/org.json-utils": "1.0.0-beta.47",
"c8": "^7.11.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"lint-staged": ">=10",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.3"
},
"lint-staged": {
"*.{ts,js,sol,json}": [
"eslint --cache --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"type": "module"
}