-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.15 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
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
{
"name": "nostream",
"version": "1.16.0",
"description": "A Nostr relay written in Typescript.",
"supportedNips": [
1,
2,
4,
9,
11,
12,
15,
16,
20,
22,
26,
28,
33
],
"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",
"lint": "eslint -o .lint-reports/eslint.json -f json --ext .ts ./src ./test",
"lint:fix": "npm run lint -- --fix",
"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": "8.7.0",
"@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/mocha": "^9.1.1",
"@types/node": "^17.0.24",
"@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.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.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",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"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.1",
"ts-node-dev": "^1.1.8",
"typescript": "4.6",
"uuid": "^8.3.2"
},
"dependencies": {
"@noble/secp256k1": "1.7.0",
"debug": "4.3.4",
"dotenv": "^16.0.3",
"joi": "17.7.0",
"knex": "2.3.0",
"pg": "8.8.0",
"pg-query-stream": "4.2.4",
"ramda": "0.28.0",
"redis": "4.5.1",
"ws": "8.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}