-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.09 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
{
"name": "n2n2-relay",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"test": "echo 'no tests yet!' && exit 0",
"docker-dev": "nodemon ./app.js",
"build": "tsc",
"start-ts": "ts-node ./app.ts",
"start": "ts-node ./app.ts",
"start-password": "USE_PASSWORD=true ts-node ./app.ts",
"start-hosting": "HOSTING_PROVIDER=true ts-node ./app.ts",
"prod": "cp config/app.json dist/config/app.json && cp config/config.json dist/config/config.json && env NODE_ENV=production node dist/app.js",
"dev": "cp config/app.json dist/config/app.json && cp config/config.json dist/config/config.json && env NODE_ENV=development node dist/app.js",
"tsc": "rm -rf dist/ && tsc && cp -r public dist/public",
"inspect": "rm -rf dist/ && tsc && cp -r public dist/public && node --inspect ./dist/app.js",
"build-binaries": "rm -rf dist/ && tsc && cp config/app.json dist/config/app.json && cp config/config.json dist/config/config.json && pkg . --target node12-alpine-x64,node12-macos-x64 --out-path binaries",
"start-ecs": "cp config/app.json dist/config/app.json && cp config/config.json dist/config/config.json && export NODE_ENV=production && node --max-old-space-size=128 dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/proto-loader": "^0.5.3",
"@scout_apm/scout-apm": "^0.1.10",
"@types/node": "^13.5.1",
"async": "^2.6.2",
"async-lock": "^1.2.2",
"axios": "^0.21.0",
"bitcoin-address-validation": "^1.0.2",
"bytebuffer": "^5.0.1",
"change-case": "^4.1.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cron": "^1.7.2",
"cron-parser": "^2.13.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.0.0",
"dateformat": "^3.0.3",
"decamelize": "^3.1.1",
"express": "^4.16.4",
"express-winston": "^4.0.2",
"fetch-blob": "^1.0.5",
"form-data": "^3.0.0",
"fs": "^0.0.1-security",
"grpc": "^1.24.3",
"helmet": "^3.21.1",
"jasmine": "^3.5.0",
"js-sha256": "^0.9.0",
"jscryptor-2": "0.0.1",
"lodash": "^4.17.19",
"md5": "^2.2.1",
"mqtt": "^4.0.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.0",
"node-forge": "^0.10.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"public-ip": "^4.0.0",
"qrcode": "^1.4.4",
"qs": "^6.9.4",
"read-last-lines": "^1.7.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"rncryptor-js": "0.0.1",
"secp256k1": "^4.0.1",
"sequelize": "5.19.3",
"sequelize-cli": "^5.5.1",
"sequelize-typescript": "^1.1.0",
"short-uuid": "^3.1.1",
"sjcl": "^1.0.8",
"socket.io": "^2.3.0",
"sphinx-bot": "^0.2.19",
"tail": "^2.0.3",
"ts-node": "^8.5.4",
"tsc": "^1.20150623.0",
"typescript": "^4.1.3",
"underscore": "^1.9.1",
"winston": "^3.2.1",
"ws": "^7.1.2",
"yup": "^0.28.1",
"zbase32": "^1.0.2"
},
"devDependencies": {
"nodemon": "^2.0.1",
"sqlite3": "4.1.1"
},
"pkg": {
"assets": [
"config/*",
"dist/config/*"
]
},
"bin": "dist/app.js"
}