-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.69 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.69 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
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
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "nostream",
"version": "2.1.1",
"description": "A Nostr relay written in Typescript.",
"supportedNips": [
1,
2,
4,
9,
11,
12,
15,
16,
20,
22,
28,
33,
40
],
"supportedNipExtensions": [
"11a"
],
"main": "src/index.ts",
"scripts": {
"dev": "node -r ts-node/register src/index.ts",
"clean": "rimraf ./{dist,.nyc_output,.test-reports,.coverage}",
"build": "tsc --project tsconfig.build.json",
"prestart": "npm run build",
"start": "cd dist && node src/index.js",
"build:check": "npm run build -- --noEmit",
"knip": "knip --config .knip.json --production --no-progress --reporter compact",
"lint": "eslint --ext .ts ./src ./test",
"check:all": "npm run lint && npm run knip",
"lint:report": "eslint -o .lint-reports/eslint.json -f json --ext .ts ./src ./test",
"lint:fix": "npm run lint -- --fix",
"import": "node -r ts-node/register src/import-events.ts",
"db:migrate": "knex migrate:latest",
"db:migrate:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run",
"pretest:unit": "mkdir -p .test-reports/unit",
"test:unit": "mocha 'test/**/*.spec.ts'",
"test:unit:watch": "npm run test:unit -- --min --watch --watch-files src/**/*,test/**/*",
"cover:unit": "nyc --report-dir .coverage/unit npm run test:unit",
"docker:build": "docker build -t nostream .",
"pretest:integration": "mkdir -p .test-reports/integration",
"test:integration": "cucumber-js",
"cover:integration": "nyc --report-dir .coverage/integration npm run test:integration -- -p cover",
"docker:compose:start": "./scripts/start",
"docker:compose:stop": "./scripts/stop",
"docker:compose:clean": "./scripts/clean",
"tor:docker:compose:start": "./scripts/start_with_tor",
"tor:hostname": "./scripts/print_tor_hostname",
"tor:docker:compose:stop": "./scripts/stop",
"docker:integration:run": "docker compose -f ./test/integration/docker-compose.yml run --rm tests",
"docker:test:integration": "npm run docker:integration:run -- npm run test:integration",
"docker:cover:integration": "npm run docker:integration:run -- npm run cover:integration",
"postdocker:integration:run": "docker compose -f ./test/integration/docker-compose.yml down",
"prepare": "husky install || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cameri/nostream.git"
},
"keywords": [
"nostr",
"relay",
"typescript"
],
"author": "Ricardo Arturo Cabral Mejía (npub1qqqqqqyz0la2jjl752yv8h7wgs3v098mh9nztd4nr6gynaef6uqqt0n47m)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cameri/nostream/issues"
},
"homepage": "https://github.com/cameri/nostream#readme",
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@cucumber/cucumber": "10.2.1",
"@cucumber/pretty-formatter": "1.0.0",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "4.1.7",
"@types/express": "4.17.21",
"@types/js-yaml": "4.0.5",
"@types/mocha": "^9.1.1",
"@types/node": "^24.0.0",
"@types/pg": "^8.6.5",
"@types/ramda": "^0.28.13",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.13.0",
"husky": "8.0.2",
"knip": "2.43.0",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rxjs": "7.8.0",
"semantic-release": "19.0.5",
"semantic-release-telegram": "1.6.0",
"sinon": "15.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "10.9.2",
"ts-node-dev": "^1.1.8",
"typescript": "~5.7.3",
"uuid": "^8.3.2"
},
"dependencies": {
"@noble/secp256k1": "1.7.1",
"axios": "^1.7.7",
"bech32": "2.0.0",
"debug": "4.3.4",
"dotenv": "16.0.3",
"express": "4.22.1",
"helmet": "6.0.1",
"joi": "17.7.0",
"js-yaml": "4.1.1",
"knex": "2.4.2",
"pg": "8.9.0",
"pg-query-stream": "4.3.0",
"ramda": "0.28.0",
"redis": "4.5.1",
"tor-control-ts": "^1.0.0",
"ws": "^8.18.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}