-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
86 lines (86 loc) · 2.57 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
{
"name": "nostrcheck-api-ts",
"version": "0.6.0.2021",
"description": "",
"exports": "./index.js",
"type": "module",
"scripts": {
"start": "node --enable-source-maps --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm ./dist/init.js",
"dev": "nodemon --ignore media/* --ignore models/* --ignore config/* --ignore tmp/* --ignore logs/* --exec node --loader ts-node/esm src/init.ts",
"build": "tsc",
"package": "node package.js && tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "vitest"
},
"author": "https://github.com/quentintaranpino",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/config": "^3.3.4",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/fluent-ffmpeg": "2.1.24",
"@types/jsonwebtoken": "^9.0.7",
"@types/markdown-it": "^14.1.1",
"@types/multer": "1.4.11",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^20.12.12",
"@types/qrcode": "^1.5.5",
"@types/validator": "13.11.10",
"@types/webtorrent": "^0.109.8",
"@types/ws": "^8.5.10",
"eslint": "^8.56.0",
"typescript": "^5.5.4",
"vitest": "0.34.6"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@aws-sdk/s3-request-presigner": "^3.583.0",
"@getalby/lightning-tools": "^5.0.3",
"@getalby/sdk": "^3.8.2",
"@noble/hashes": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@webbtc/webln-types": "^3.0.0",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"blurhash": "^2.0.5",
"bolt11": "^1.4.1",
"config": "^3.3.12",
"cookie-parser": "^1.4.7",
"cors": "2.8.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"express-session": "^1.18.0",
"fastq": "1.17.1",
"file-type": "19.0.0",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"markdown-it": "^14.1.0",
"multer": "1.4.5-lts.1",
"mysql2": "3.9.8",
"nodemon": "^3.1.2",
"nostr-tools": "^2.7.0",
"python-shell": "^5.0.0",
"qrcode": "^1.5.3",
"raw-body": "^3.0.0",
"redis": "^4.6.14",
"rotating-file-stream": "3.2.1",
"sha256": "^0.2.0",
"sharp": "^0.33.4",
"ts-node": "^10.9.2",
"tslog": "4.9.2",
"validator": "13.12.0",
"webtorrent": "^2.5.0"
},
"engines": {
"node": ">=20",
"npm": ">=10.4.0"
}
}