-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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
{
"name": "cqrs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-services": "docker-compose --project-name=poc-node-framework up",
"watch:ts": "tsc -w",
"build": "rm -rf dist/ && tsc",
"start:debug": "nodemon --inspect ./dist/bootstrap/app.js",
"start": "rm -rf dist/ && concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run start:debug\"",
"cli": "node ./dist/bootstrap/console.js",
"lint": "tslint ./src/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@sentry/types": "^4.5.3",
"@types/bull": "^3.5.5",
"@types/cls-hooked": "^4.2.1",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^14.0.4",
"@types/helmet": "0.0.42",
"@types/ioredis": "^4.0.6",
"@types/node": "^10.12.18",
"bull-arena": "^2.5.2",
"concurrently": "^4.1.0",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"typescript": "^3.2.2"
},
"dependencies": {
"@sentry/node": "^4.5.3",
"@types/commander": "^2.12.2",
"@types/eventemitter2": "^4.1.0",
"@types/glob": "^7.1.1",
"@types/nodemailer": "^4.6.5",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"bull": "^3.6.0",
"cls-hooked": "^4.2.2",
"commander": "^2.19.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eventemitter2": "^5.0.1",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"fastify": "^1.13.3",
"fastify-helmet": "^3.0.0",
"glob": "^7.1.3",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"helmet": "^3.15.0",
"inversify": "^5.0.1",
"ioredis": "^4.5.1",
"nodemailer": "^5.1.1",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.42.0",
"sequelize-typescript": "^0.6.7"
}
}