-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "sslatt-backend",
"version": "0.0.1",
"description": "SSLATT backend",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "node build/index",
"dev": "nodemon src/index.ts",
"dev:xmr": "PORT=3033 nodemon src/monerox.app.ts",
"test": "mocha src/*/*test.ts --exit",
"clean": "rm -rf build",
"build:server": "tsc --skipLibCheck",
"build": "yarn clean && yarn build:server",
"docker": "act --job gke-build-publish-deploy --secret-file .env.prod --container-architecture linux/amd64",
"docker:fastdfs": "act --job fastdfs-backup --secret-file .env --container-architecture linux/amd64 -v"
},
"peerDependencies": {
"@roadmanjs/auth": ">=0.0.27",
"@roadmanjs/couchset": ">=0.0.9",
"@roadmanjs/firebase-admin": ">=0.0.25",
"apollo-server-express": ">=3.12.1",
"class-validator": ">=0.13.2",
"couchset": ">=0.0.17",
"graphql-upload": "13"
},
"resolutions": {
"@roadmanjs/auth": ">=0.0.35"
},
"dependencies": {
"@roadmanjs/auth": "^0.0.35",
"@roadmanjs/chat": "^0.0.66",
"@roadmanjs/couchset": "^0.0.9",
"@roadmanjs/firebase-admin": "^0.0.28",
"@roadmanjs/fluxer": "^0.0.5",
"@roadmanjs/monerox": "^0.0.5",
"@roadmanjs/social": "^0.0.28",
"@roadmanjs/wallet": "^0.0.74",
"apollo-server-express": "^3.12.1",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"bull": "^4.8.3",
"class-validator": "^0.13.2",
"cors-anywhere": "^0.4.4",
"couchset": "^0.0.17",
"country-state-city": "^3.2.0",
"cross-fetch": "^3.1.5",
"graphql-upload": "13",
"moment": "^2.29.3",
"multer": "^1.4.5-lts.1",
"openpgp": "^5.10.2",
"request": "^2.88.2",
"roadman": "^0.3.18",
"ws": "^8.8.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bull": "^3.15.8",
"@types/chai": "^4.2.22",
"@types/lodash": "^4.14.175",
"@types/mocha": "^9.0.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.11",
"@types/node-fetch": "^2.6.2",
"@types/request": "^2.48.8",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}