forked from quentintaranpino/nostrcheck-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2 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
{
"name": "nostrcheck-api-ts",
"version": "0.5.0.1474",
"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 --exec node --loader ts-node/esm src/init.ts",
"build": "tsc",
"package": "node update-version.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.0",
"@types/cors": "2.8.13",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/fluent-ffmpeg": "2.1.21",
"@types/markdown-it": "^13.0.7",
"@types/multer": "1.4.7",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^20.4.9",
"@types/sha256": "0.2.0",
"@types/validator": "13.11.1",
"@types/webtorrent": "^0.109.6",
"eslint": "8.46.0",
"eslint-config-codely": "3.0.0",
"eslint-plugin-jest": "27.2.3",
"typescript": "5.3.3",
"vitest": "^1.0.1"
},
"dependencies": {
"bcrypt": "^5.1.1",
"blurhash": "^2.0.5",
"config": "3.3.9",
"cors": "2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.3",
"fastq": "1.15.0",
"file-type": "18.5.0",
"fluent-ffmpeg": "^2.1.2",
"helmet": "7.0.0",
"markdown-it": "^14.0.0",
"multer": "1.4.5-lts.1",
"mysql2": "3.9.7",
"nodemon": "^3.0.1",
"nostr-tools": "^2.1.5",
"redis": "^4.6.13",
"rotating-file-stream": "3.1.1",
"sha256": "0.2.0",
"sharp": "^0.33.2",
"ts-node": "10.9.1",
"tslog": "4.9.1",
"ut_metadata": "^4.0.3",
"validator": "13.11.0",
"websocket-polyfill": "^0.0.3",
"webtorrent": "^2.1.36"
},
"engines": {
"node": ">=20",
"npm": ">=10.4.0"
}
}