-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.09 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
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
{
"name": "voluble",
"version": "0.0.0-a1",
"private": true,
"main": "app.js",
"engines": {
"node": "15.2.0",
"npm": "7.0.8"
},
"scripts": {
"start": "node ./dist/server/index.js",
"dev": "nodemon ./dist/server/index.js",
"heroku-prebuild": "chmod +x ./.ci/heroku-preinstall.sh; bash ./.ci/heroku-preinstall.sh",
"heroku-cleanup": "chmod +x ./.ci/heroku-postinstall.sh; bash ./.ci/heroku-postinstall.sh",
"test-tap": "mocha dist/test --exit --reporter tap",
"test": "mocha dist/test --exit --full-trace --bail --timeout=20000",
"start-server": "node --trace-warnings ./dist/server/index.js",
"start-worker": "node ./dist/worker/worker-main.js",
"lint": "npx eslint ./src/**/* --ext .js,.ts --ignore-pattern src/test/* --fix",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "npm run-script lint"
}
},
"dependencies": {
"auth0": "^2.28.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"esendex": "^0.1.8",
"express": "^4.17.1",
"express-jwt-authz": "^2.4.1",
"express-xml-bodyparser": "^0.3.0",
"generate-password": "^1.5.1",
"google-libphonenumber": "^3.2.13",
"jose": "^3.0.2",
"json-api-serializer": "^2.6.0",
"jwks-rsa": "^1.9.0",
"mysql2": "^2.2.5",
"rsmq": "^0.12.2",
"sequelize": "^6.3.5",
"telegram-mtproto": "^1.0.5",
"uuid": "^8.3.1",
"validator": "^13.1.17",
"voluble-common": "git+ssh://github.com/crewtext/voluble-common.git",
"voluble-plugin-base": "git+ssh://github.com/CrewText/voluble-plugin-base.git",
"winston": "^3.3.3"
},
"description": "A plugin-oriented mass text communication system",
"devDependencies": {
"@types/auth0": "^2.20.8",
"@types/auth0-js": "^9.14.0",
"@types/bluebird": "^3.5.32",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.0",
"@types/google-libphonenumber": "^7.4.19",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@types/node-telegram-bot-api": "^0.28.4",
"@types/request-promise-native": "^1.0.17",
"@types/rsmq": "^0.8.4",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"faker": "^5.1.0",
"husky": "^4.3.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/crewtext/voluble.git"
},
"keywords": [
"messaging",
"contact",
"sms"
],
"author": "Cal McLean",
"license": "MIT",
"bugs": {
"url": "https://github.com/crewtext/voluble/issues"
},
"homepage": "https://github.com/crewtext/voluble#readme"
}