-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "osm-stats-api",
"version": "0.20.0",
"description": "An API for Missing Maps statistics",
"repository": {
"type": "git",
"url": "https://github.com/AmericanRedCross/osm-stats-api.git"
},
"scripts": {
"precommit": "lint-staged"
},
"author": "Development Seed",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/AmericanRedCross/osm-stats-api/issues"
},
"homepage": "https://github.com/AmericanRedCross/osm-stats-api",
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"bookshelf": "^0.9.1",
"boom": "^3.1.1",
"hapi": "^11.1.2",
"hapi-router": "^3.4.0",
"ical": "^0.5.0",
"ioredis": "^1.15.0",
"json2csv": "^3.11.5",
"knex": "^0.9.0",
"locking-cache": "^0.4.1",
"pg": "^4.4.3",
"ramda": "^0.19.1",
"request-promise": "^2.0.0",
"wreck": "^12.5.1"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"git-exec-and-restage": "^1.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"nodemon": "^1.15.1",
"prettier": "^1.10.2"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage prettier --write --"
]
}
}