-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.65 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
{
"name": "@facetdev/node-cqrs-services",
"version": "0.8.1",
"description": "Library of base classes for Node CQRS services implementation",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production gulp",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AttackPattern/node-cqrs-services.git"
},
"author": "Facet Development <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.9.5"
},
"bugs": {
"url": "https://github.com/AttackPattern/node-cqrs-services/issues"
},
"homepage": "https://github.com/AttackPattern/node-cqrs-services#readme",
"dependencies": {
"@facetdev/node-cqrs-lib": "0.10.8",
"async": "3.1.0",
"aws-sdk": "2.554.0",
"es-promisify": "1.1.2",
"koa-passport": "4.1.3",
"moment": "2.24.0",
"node-fetch": "2.6.0",
"uuid": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.6.0",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-proposal-optional-chaining": "7.6.0",
"@babel/preset-env": "7.6.3",
"@babel/register": "7.6.2",
"@babel/runtime": "7.6.3",
"babel-eslint": "10.0.3",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-datetime": "1.5.0",
"core-js": "3.3.3",
"del": "5.1.0",
"fancy-log": "1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "8.0.0",
"gulp-cached": "1.1.1",
"gulp-changed": "4.0.2",
"gulp-debug": "4.0.0",
"gulp-eslint": "6.0.0",
"gulp-if": "3.0.0",
"gulp-istanbul": "1.1.3",
"gulp-load-plugins": "~2.0.1",
"gulp-mocha": "~7.0.2",
"gulp-remember": "~1.0.1",
"gulp-size": "~3.0.0",
"gulp-sourcemaps": "~2.6.5",
"gulp-uglify": "~3.0.2",
"gulp-util": "~3.0.8",
"isparta": "~4.1.0",
"istanbul": "~0.4.5",
"jshint-stylish": "~2.2.1",
"mocha": "~6.2.2",
"node-mocks-http": "~1.8.0",
"proxyquire": "~2.1.3",
"prettier": "1.18.2",
"regenerator-runtime": "0.13.3",
"speakeasy": "2.0.0",
"sinon": "~7.5.0",
"supertest": "~4.0.2"
}
}