-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "Recommendation",
"version": "0.1.0",
"description": "Recommendation Service",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"test": "sh testing.sh",
"server-dev": "nodemon --inspect server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/model-airbnb/Recommendation.git"
},
"keywords": [
"recommendation"
],
"author": "Tyler Truong",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/model-airbnb/Recommendation/issues"
},
"homepage": "https://github.com/model-airbnb/Recommendation#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"chai": "^4.1.2",
"eslint": "^4.10.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",
"mocha": "^3.5.3",
"nyc": "^11.3.0"
},
"dependencies": {
"aws-sdk": "^2.141.0",
"body-parser": "^1.17.0",
"elasticsearch": "^13.3.1",
"express": "^4.15.0",
"pg": "^7.3.0",
"redis": "^2.8.0",
"winston": "^3.0.0-rc1",
"winston-elasticsearch": "^0.5.3"
}
}