-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "elasticsearch-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/open-search/elastic-api.git"
},
"keywords": ["elasticsearch", "api"],
"scripts": {
"start": "node server.js",
"dev": "watch 'npm run test' api",
"test": "npm run lint && npm run test:tape && nyc report",
"lint": "eslint test site index.js server.js",
"test:tape": "PORT=3000 ELASTICSEARCH_HOST=http://example ELASTICSEARCH_PORT=9200 nyc --reporter=lcov tape 'api/**/*.spec.js'"
},
"author": "Mark Robson <mark.o.robson@gmail.com> (http://digioli.co.uk)",
"license": "MIT",
"dependencies": {
"cors": "2.8.4",
"elasticsearch": "^12.1.0",
"express": "^4.14.0",
"express-graphql": "^0.5.4",
"express-ping": "1.4.0",
"graphql": "^0.7.1",
"helmet": "^2.3.0",
"swagger-ui-express": "2.0.15",
"winston": "^2.3.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"nock": "^9.0.0",
"nyc": "^10.0.0",
"supertest": "^2.0.1",
"tape": "^4.6.2",
"watch": "^1.0.2"
}
}