forked from quentintaranpino/nostrcheck-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "nostrcheck-api-ts",
"version": "0.3.4",
"description": "",
"exports": "./index.js",
"type": "module",
"scripts": {
"start": "node --enable-source-maps --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm ./dist/src/server.js",
"dev": "nodemon --exec node --loader ts-node/esm src/server.ts",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose --detectOpenHandles"
},
"author": "https://github.com/quentintaranpino",
"license": "apache-2.0",
"devDependencies": {
"@types/config": "3.3.0",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/fluent-ffmpeg": "2.1.21",
"@types/jest": "29.5.3",
"@types/multer": "1.4.7",
"@types/mysql2": "github:types/mysql2",
"@types/node": "20.4.2",
"@types/sha256": "0.2.0",
"@types/supertest": "2.0.12",
"@types/validator": "13.7.17",
"@types/webtorrent": "^0.109.3",
"eslint": "8.45.0",
"eslint-config-codely": "2.1.3",
"eslint-plugin-jest": "27.2.3",
"jest": "29.6.1",
"prettier": "3.0.0",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"dependencies": {
"config": "3.3.9",
"cors": "2.8.5",
"express": "4.18.2",
"fastq": "1.15.0",
"file-type": "18.5.0",
"fluent-ffmpeg": "2.1.2",
"helmet": "7.0.0",
"multer": "1.4.5-lts.1",
"mysql2": "3.5.1",
"nodemon": "^3.0.1",
"nostr-tools": "1.12.1",
"redis": "4.6.7",
"rotating-file-stream": "3.1.0",
"sha256": "0.2.0",
"ts-node": "10.9.1",
"tslog": "4.8.2",
"ut-metadata": "^0.6.1",
"validator": "13.9.0",
"webtorrent": "^2.1.12"
},
"engines": {
"node": ">=16"
}
}