-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·112 lines (112 loc) · 3.62 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "adminmicroservice",
"version": "1.0.0",
"description": "Admin Microservice",
"main": "dist/index.js",
"scripts": {
"start": "ts-node server/index.ts",
"compile": "ts-node build.ts && tsc",
"dev": "nodemon --exec npx ts-node server/index.ts | pino-pretty",
"grpc": "ts-node server/grpc.ts",
"server": "concurrently \"npm run start\" \"npm run grpc\"",
"dev:debug": "nodemon --exec \"node -r ts-node/register --inspect-brk\" server/index.ts | pino-pretty",
"lint": "eslint -c .eslintrc.js \"{server, test}/**/*.{js,ts,tsx}\" --quiet",
"lint:fix": "eslint -c .eslintrc.js \"{server, test}/**/*.{js,ts,tsx}\" --quiet --fix",
"test": "mocha -r ts-node/register test/**/*.ts --exit",
"test:debug": "mocha -r ts-node/register --inspect-brk test/**/*.ts --exit"
},
"dependencies": {
"@grpc/grpc-js": "^1.4.5",
"@jimp/gif": "^0.16.1",
"@types/cron": "^1.7.3",
"@types/google-protobuf": "^3.15.3",
"@types/qrcode": "^1.4.2",
"@types/speakeasy": "^2.0.7",
"async-redis": "^2.0.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bull": "^4.1.4",
"chai-http": "^4.3.0",
"concurrently": "^6.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cron": "^1.8.2",
"csvtojson": "^2.0.10",
"date-and-time": "^1.0.1",
"dotenv": "^8.2.0",
"dynamoose": "^2.7.3",
"ejs": "^3.1.6",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.3",
"express": "^4.17.1",
"express-openapi-validator": "^4.10.9",
"express-validator": "^6.14.0",
"fs": "^0.0.1-security",
"fuzzy-search": "^3.2.1",
"google-auth-library": "^7.3.0",
"google-protobuf": "^3.17.3",
"helmet": "^4.6.0",
"image-resize-compress": "^1.0.8",
"ipfs-http-client": "^55.0.0",
"jimp": "^0.16.1",
"joi": "^17.6.0",
"joi-password": "^1.4.5",
"jsonwebtoken": "^8.5.1",
"multer-s3": "^2.9.0",
"mysql2": "^2.3.3",
"node-zookeeper-client": "^1.1.1",
"nodemailer": "^6.6.2",
"pino": "^6.11.0",
"probe-image-size": "^7.2.2",
"qrcode": "^1.5.1",
"querystring": "^0.2.0",
"redis": "^3.1.2",
"sequelize": "^6.12.0-beta.2",
"speakeasy": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bull": "^3.15.7",
"@types/chai": "^4.2.14",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/date-and-time": "^0.13.0",
"@types/ejs": "^3.0.7",
"@types/ethereumjs-abi": "^0.6.3",
"@types/express": "^4.17.11",
"@types/fuzzy-search": "^2.1.1",
"@types/imagemin": "^8.0.0",
"@types/imagemin-jpegtran": "^5.0.1",
"@types/imagemin-pngquant": "^8.0.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "^8.2.0",
"@types/multer-s3": "^2.7.10",
"@types/node": "^14.14.22",
"@types/node-zookeeper-client": "^0.2.8",
"@types/nodemailer": "^6.4.4",
"@types/pino": "^6.3.5",
"@types/redis": "^2.8.29",
"@types/sequelize": "^4.28.11",
"@types/shelljs": "^0.8.8",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.1.3",
"nodemon": "^2.0.7",
"pino-pretty": "^4.3.0",
"prettier": "^2.2.1",
"shelljs": "^0.8.4",
"supertest": "^6.0.1",
"ts-node": "10.8.1",
"typescript": "4.5.4"
},
"author": "Carmine DiMascio <[email protected]> (https://github.com/cdimascio)"
}