forked from alessh/web-bff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "garden-aid-web-bff",
"version": "0.0.1",
"description": "Backend for Web Frontend",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"test": "snyk test && npm run test:unit",
"test:unit": "istanbul cover _mocha tests/all -- -R spec --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johncmckim/garden-aid.git"
},
"keywords": [
"Serverless",
"IOT",
"AWS",
"Lambda"
],
"author": "John McKim",
"license": "MIT",
"bugs": {
"url": "https://github.com/johncmckim/garden-aid/issues"
},
"homepage": "https://github.com/johncmckim/garden-aid#readme",
"dependencies": {
"auth0": "^2.3.1",
"bluebird": "^3.4.1",
"chai": "^3.5.0",
"graphql": "^0.6.1",
"iopipe": "0.0.19",
"joi": "^9.0.4",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.15.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mock-require": "^1.3.0",
"moment": "^2.14.1",
"sinon": "^1.17.5",
"stampit": "^2.1.2",
"util": "^0.10.3",
"vogels": "^2.2.0",
"vogels-promisified": "^2.2.3"
},
"devDependencies": {
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.4",
"snyk": "^1.18.0"
}
}