-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "poc-async-processing",
"version": "1.0.0",
"description": "",
"author": "",
"scripts": {
"demo:build": "vue-cli-service build",
"demo:lint": "vue-cli-service lint",
"demo:start": "vue-cli-service serve",
"start": "concurrently \"nodemon src/payment-gateway.ts\" \"nodemon src/payment-processor.ts\"",
"gateway:start": "ts-node src/payment-gateway.ts",
"processor:start": "ts-node src/payment-processor.ts"
},
"main": "index.js",
"dependencies": {
"@apollo/client": "^3.5.10",
"@graphql-tools/schema": "^8.3.2",
"apollo-server": "^3.6.3",
"apollo-server-core": "^3.6.3",
"apollo-server-express": "^3.6.3",
"aws-sdk": "^2.1087.0",
"concurrently": "^7.0.0",
"core-js": "^3.6.5",
"express": "^4.17.3",
"graphql": "^16.3.0",
"graphql-redis-subscriptions": "^2.4.2",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.6.2",
"ioredis": "^4.28.5",
"sqs-consumer": "^5.6.0",
"uuid": "^8.3.2",
"vue": "^3.0.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/ioredis": "^4.28.8",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.2",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^8.5.0",
"graphql-tag": "^2.9.0",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"keywords": [],
"license": "ISC"
}