-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.69 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
{
"name": "damus-api",
"description": "Damus purple api",
"version": "0.1.0",
"repository": {
"url": "https://github.com/damus-io/api"
},
"main": "index.js",
"bin": {
"damus-api": "./src/index.js"
},
"scripts": {
"test": "ALLOW_HTTP_AUTH=\"true\" DEEPL_KEY=123 TRANSLATION_PROVIDER=mock tap test/*.test.js",
"test-path": "ALLOW_HTTP_AUTH=\"true\" DEEPL_KEY=123 TRANSLATION_PROVIDER=mock tap",
"test-translate": "ALLOW_HTTP_AUTH=\"true\" TRANSLATION_PROVIDER=mock tap test/translate.test.js",
"test-noswhere": "ALLOW_HTTP_AUTH=\"true\" TRANSLATION_PROVIDER=noswhere tap test/translate.test.js",
"debug-test": "ALLOW_HTTP_AUTH=\"true\" TRANSLATION_PROVIDER=mock DEEPL_KEY=123 tap test/*.test.js --timeout=2400",
"start": "node src/index.js",
"dev": "TRANSLATION_PROVIDER=mock ENABLE_HTTP_AUTH=\"true\" node src/index.js",
"dev-debug": "TRANSLATION_PROVIDER=mock ENABLE_HTTP_AUTH=\"true\" node --inspect src/index.js",
"dev-debug-cli": "TRANSLATION_PROVIDER=mock ENABLE_HTTP_AUTH=\"true\" node inspect src/index.js",
"type-check": "tsc --checkJs --allowJs src/*.js --noEmit --skipLibCheck",
"type-check-path": "tsc --checkJs --allowJs --noEmit --skipLibCheck"
},
"dependencies": {
"@apple/app-store-server-library": "^0.2.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lmdb": "^2.9.1",
"lnsocket": "^0.3.3",
"nostr": "^0.2.8",
"nostr-tools": "^2.3.1",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@tapjs/sinon": "^1.1.17",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"tap": "^18.6.1",
"typescript": "^5.3.3"
}
}