-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
{
"name": "wallfair-playmoney-backend",
"description": "Blockchain meets Prediction Markets made Simple.",
"version": "2.0.6",
"engines": {
"node": "14.15.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "node --inspect-brk index.js",
"server": "nodemon index.js",
"share": "ngrok http 8000 -host-header=\"localhost:8000\"",
"test": "npm run test:unit",
"lint": "eslint --max-warnings=-1 --cache --c .eslintrc.js --ext .js,.json '.'",
"lint:fix": "eslint --cache --c .eslintrc.js --ext .js,.json --fix '.'",
"test:unit": "cross-env TS_NODE_PROJECT='./tsconfig.mocha.json' mocha --sort"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.35.0",
"@aws-sdk/s3-request-presigner": "^3.35.0",
"@sendgrid/mail": "^7.4.7",
"@wallfair.io/trading-engine": "^0.1.67",
"@wallfair.io/wallfair-casino": "0.1.96",
"@wallfair.io/wallfair-commons": "1.8.25",
"agenda": "^4.2.1",
"amqplib": "^0.8.0",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dotenv": "^8.2.0",
"ethers": "^5.5.1",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-jwt": "^6.1.0",
"express-jwt-authz": "^2.4.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"flat": "^5.0.2",
"generate-password": "^1.6.1",
"google-auth-library": "^7.9.2",
"googleapis": "^86.1.0",
"helmet": "^4.5.0",
"http": "0.0.1-security",
"js-big-decimal": "^1.3.4",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.4",
"lodash": "^4.17.21",
"lodash.pick": "^4.4.0",
"mailchimp-api-v3": "^1.15.0",
"moment": "^2.29.1",
"mongodb": "^4.1.2",
"mongoose": "^5.13.9",
"multer": "^1.4.4",
"nodemailer": "^6.6.3",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg-format": "^1.0.4",
"redis": "3.1.2",
"slugify": "^1.6.0",
"tslib": "^2.3.1",
"twilio": "^3.67.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"prettier": "2.3.2"
}
}