-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
132 lines (132 loc) · 4.5 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
{
"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",
"waku",
"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",
"typechain:videre": "npx typechain --target ethers-v5 --out-dir ./typechain-videre './node_modules/@windingtree/videre-contracts/artifacts/contracts/**/*.json'",
"prepublish": "yarn typechain:videre && yarn protoc:libs && yarn protoc:local",
"dev": "cross-env NODE_ENV=development 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 -r ts-node/register test/**/*.spec.ts",
"test:local": "NODE_ENV=development NODE_IS_TEST=true npx mocha -r ts-node/register --timeout 70000 test-local/**/*.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",
"protoc:libs": "cp -pR ./node_modules/@windingtree/stays-models/dist/proto/*.proto ./src/proto/",
"protoc:local": "protoc --ts_out ./src/proto --proto_path ./src/proto ./src/proto/*.proto",
"prepare": "husky install",
"start": "node dist/esm/src/index.js"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@protobuf-ts/plugin": "^2.7.0",
"@types/yamljs": "^0.2.31",
"@web-std/file": "^3.0.2",
"@windingtree/stays-models": "^2.3.1",
"@windingtree/videre-sdk": "^0.7.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"express": "^4.18.1",
"express-openapi-validator": "^4.13.8",
"express-rate-limit": "^6.4.0",
"express-validator": "^6.14.2",
"form-data": "^4.0.0",
"helmet": "^5.1.0",
"ipfs-core": "^0.15.4",
"js-waku": "^0.24.0",
"jsonwebtoken": "^8.5.1",
"kleur": "^4.1.5",
"level": "^8.0.0",
"level-ts": "^2.1.0",
"luxon": "^2.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"prom-client": "^14.0.1",
"response-time": "^2.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@types/bcrypt": "^5.0.0",
"@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.0.3",
"@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/videre-contracts": "^2.0.0",
"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.19.0",
"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.4.0",
"ts-node": "^10.8.2",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{ts,js,sol,json}": [
"eslint --cache --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"type": "module"
}