-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.75 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.75 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
{
"name": "event-sourcing",
"version": "0.0.0",
"description": "ES in TypeScript",
"main": "dist/src/UI/index.js",
"license": "MIT",
"scripts": {
"start": "tsc; TS_NODE_PROJECT=tsconfig.dist.json NODE_PATH=src node --inspect=3030 -r tsconfig-paths/register dist/src/UI/index.js",
"start:production": "TS_NODE_PROJECT=tsconfig.dist.json NODE_PATH=src node -r tsconfig-paths/register dist/src/UI/index.js",
"watch": "tsc -w",
"dev": "nodemon",
"compile": "tsc -p tsconfig.json",
"event-consumer": "NODE_PATH=src node -r ts-node/register/type-check src/UI/console/elasticEventConsumer.ts",
"user-consumer": "NODE_PATH=src node -r ts-node/register/type-check src/UI/console/userConsumer.ts",
"property-consumer": "NODE_PATH=src node -r ts-node/register/type-check src/UI/console/propertyConsumer.ts",
"indexes": "NODE_PATH=src node -r ts-node/register/type-check src/UI/console/bootElastic.ts"
},
"devDependencies": {
"@types/amqplib": "^0.5.7",
"@types/elasticsearch": "^5.0.22",
"@types/express": "^4.11.1",
"@types/jest": "^22.1.4",
"@types/node": "^9.4.6",
"@types/redis": "^2.8.6",
"graphql-voyager": "^1.0.0-rc.15",
"jest": "^22.4.2",
"node-monitor-ui": "^1.0.6",
"nodemon": "^1.17.2",
"ts-jest": "^22.4.0",
"ts-node": "^5.0.1",
"tsconfig-paths": "^3.1.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"dependencies": {
"amqplib": "^0.5.2",
"apollo-server-express": "^1.3.4",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"elasticsearch": "^14.2.1",
"express": "^4.16.2",
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1",
"hollywood-js": "^1.3",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"uuid": "^3.2.1"
}
}