-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 956 Bytes
/
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
{
"name": "Inventory",
"version": "1.0.0",
"description": "Inventory Service for model-airbnb",
"author": "Ryan Akiyama",
"license": "UNLICENSED",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/model-airbnb/Inventory.git"
},
"keywords": [
"inventory"
],
"scripts": {
"start": "node ./server/index.js | node ./server/aws.js",
"test": "mocha -R nyan ./test/*.js"
},
"dependencies": {
"aws-sdk": "^2.141.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"elasticsearch": "^13.3.1",
"express": "^4.16.2",
"mocha": "^4.0.1",
"mysql": "^2.15.0",
"request": "^2.83.0",
"sinon": "^4.1.1",
"sqs-consumer": "^3.8.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0"
}
}