-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "gc-query",
"version": "1.0.0",
"description": "A query interface for the geocache database",
"main": "index.js",
"repository": "https://github.com/foobert/gc-query.git",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "nyc mocha",
"coverage": "nyc --reporter lcovonly mocha && codacy-coverage < coverage/lcov.info",
"lint": "eslint ."
},
"author": "foobert",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.4.8",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"datadog-metrics": "^0.8.1",
"debug": "^4.1.1",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-geojson": "^1.0.0",
"graphql-tools": "^4.0.4",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongo-cursor-pagination": "^7.1.0",
"mongodb": "^3.2.2",
"morgan": "^1.9.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"mocha": "^6.0.0",
"mongo-mock": "^3.4.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"sinon": "^7.3.0",
"sinon-chai": "^3.3.0"
}
}