-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rw-dataset-microservice",
"version": "1.2.0",
"description": "Dataset Microservice",
"repository": "https://github.com/resource-watch/dataset",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js e2eTest",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index.js",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"eslint": "eslint 'app/**/*.js' --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint 'app/**/*.js' --fix",
"git add"
]
},
"keywords": [
"dataset",
"koa2",
"rw",
"nodejs"
],
"author": "https://github.com/archelogos",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"chai-http": "^4.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-notify": "^0.4.5",
"grunt-simple-nyc": "^2.0.0",
"lint-staged": "^8.1.5",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nyc": "^13.3.0"
},
"dependencies": {
"bunyan": "^1.8.5",
"config": "^1.21.0",
"cron-parser": "^2.3.1",
"ct-register-microservice-node": "^2.1.3",
"firstline": "^1.2.1",
"kcors": "^2.1.1",
"koa": "^2.0.0",
"koa-body": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.0",
"koa-mount": "^2.0.0",
"koa-multer": "^1.0.1",
"koa-router": "^7.0.1",
"koa-validate": "^1.0.7",
"microservice-cache-middleware": "^1.0.0",
"mongoose": "^4.8.5",
"mongoose-paginate": "^5.0.3",
"redis": "^2.8.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"s3": "^4.4.0",
"sleep": "^5.2.3",
"slug": "^0.9.1",
"stampery": "^6.0.2",
"uuid": "^3.0.1"
}
}