-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.28 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
{
"name": "items-api",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"prebuild": "del dist/ && cpy '**/*.key' ../dist --cwd=services/ --no-overwrite --parents && cpy '**/*.hbs' ../dist --cwd=services/ --no-overwrite --parents",
"build": "tsc",
"watch": "npm run prebuild && tsc -w",
"session-service": "nodemon ./dist/session-service/main.js",
"items-service": "nodemon ./dist/items-service/main.js",
"items-gql-service": "nodemon ./dist/items-qgl-service/main.js",
"user-service": "nodemon ./dist/user-service/main.js",
"notification-service": "nodemon ./dist/notification-service/main.js"
},
"nodemonConfig": {
"delay": "2500"
},
"dependencies": {
"@grpc/proto-loader": "0.5.3",
"@types/graphql": "14.5.0",
"amqplib": "0.5.5",
"bcrypt": "4.0.1",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-graphql": "0.9.0",
"express-validator": "6.4.0",
"faker": "4.1.0",
"google-protobuf": "3.11.4",
"graphql": "14.6.0",
"grpc": "1.24.2",
"grpc-promise": "1.4.0",
"handlebars": "4.7.3",
"http-status-codes": "1.4.0",
"jsonwebtoken": "8.5.1",
"knex": "0.20.10",
"lodash": "4.17.19",
"mailgun-js": "0.22.0",
"morgan": "1.9.1",
"nodemailer": "6.4.4",
"pg": "7.18.2",
"redis": "3.0.2",
"ts-custom-error": "3.1.1",
"ts-node": "8.6.2",
"typescript": "3.8.3",
"winston": "3.2.1"
},
"devDependencies": {
"@types/amqplib": "0.5.13",
"@types/bcrypt": "3.0.0",
"@types/bluebird": "3.5.30",
"@types/compression": "1.7.0",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.3",
"@types/faker": "4.1.10",
"@types/jsonwebtoken": "8.3.8",
"@types/mailgun-js": "0.22.4",
"@types/morgan": "1.9.0",
"@types/node": "13.7.7",
"@types/nodemailer": "6.4.0",
"@types/pg": "7.14.1",
"@types/redis": "2.8.16",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"cpy-cli": "3.1.0",
"del-cli": "3.0.0",
"eslint": "6.8.0",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.20.1",
"nodemon": "2.0.2"
}
}