-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 KB
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
{
"name": "quali-chat-core",
"version": "1.0.0",
"description": "Backend service for quali.chat: manages Matrix room access and membership based on users' native and token balances.",
"repository": {
"type": "git",
"url": "https://github.com/quali-chat/quali-chat-core.git"
},
"bugs": {
"url": "https://github.com/quali-chat/quali-chat-core/issues"
},
"homepage": "https://github.com/quali-chat/quali-chat-core#readme",
"keywords": [
"matrix",
"chat",
"token-gating",
"backend",
"quali.chat"
],
"scripts": {
"test": "vitest --run",
"test:ci": "npm run test -- --silent --mode=ci --coverage",
"start": "tsx -r dotenv/config src/index.ts",
"dev": "tsx -r dotenv/config --watch ./src/index.ts",
"prettier": "prettier . --check",
"lint": "tsc --noEmit -p . && npm run prettier",
"build": "tsc --build && tsc-alias",
"prepare": "husky"
},
"type": "module",
"author": "quali.chat",
"engines": {
"node": ">=18.0.0"
},
"license": "ISC",
"dependencies": {
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.3.0-beta.1",
"alchemy-sdk": "^3.4.1",
"async-lock": "^1.4.1",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"camelcase-keys-deep": "^0.1.0",
"cors": "^2.8.5",
"dotenv": "16.4.5",
"express": "^4.19.2",
"express-rate-limit": "7.5.0",
"matrix-bot-sdk": "^0.7.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"redis": "^4.7.0",
"web3-utils": "^4.3.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/async-lock": "^1.4.2",
"@types/bs58": "^4.0.4",
"@types/camelcase-keys-deep": "^0.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/html-minifier": "^4.0.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.4.1",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.0.5",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "3.3.3",
"supertest": "^7.0.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}