forked from TheCryptoDonkey/DonkeyRide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "donkeyride-relay",
"version": "1.0.0",
"private": true,
"description": "DonkeyRide direct rider/driver PWA with an optional reference operator",
"homepage": "https://ride.trotters.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/TheCryptoDonkey/DonkeyRide.git"
},
"bugs": {
"url": "https://github.com/TheCryptoDonkey/DonkeyRide/issues"
},
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "node tests/helpers/run-tests.js",
"test:live": "node tests/helpers/run-live-tests.js",
"test:e2e": "node scripts/e2e-lifecycle.js",
"test:ui": "npm --prefix web run test:ui",
"test:ui:direct": "npm --prefix web run test:ui:direct",
"test:ui:live": "npm --prefix web run test:ui:live",
"test:regtest": "node tests/regtest/run.js",
"dev:nix": "nix run .#services & npm run dev",
"web:dev": "npm --prefix web run dev",
"web:build": "npm --prefix web run build",
"web:test": "npm --prefix web run test",
"docker:build": "docker build -t donkeyride-relay .",
"docker:run": "docker run -p 3000:3000 -p 3001:3001 --env-file .env donkeyride-relay"
},
"dependencies": {
"axios": "^1.19.0",
"clightning-client": "^0.1.0",
"cors": "^2.8.6",
"dotenv": "^16.3.1",
"express": "^4.22.2",
"farrier-kit": "^1.1.1",
"ln-service": "^59.2.5",
"node-fetch": "^2.7.0",
"nostr-tools": "^1.17.0",
"pg": "^8.23.0",
"redis": "^4.6.0",
"uuid": "^11.1.1",
"web-push": "^3.6.7",
"ws": "^8.21.3"
},
"devDependencies": {
"nodemon": "^3.1.14"
},
"engines": {
"node": ">=20.0.0"
},
"author": "DonkeyRide Community",
"license": "MIT"
}