-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.45 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
{
"name": "geo-ip",
"version": "1.1.0",
"description": "Geo IP Location API",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src src/index.js",
"start": "node src/index.js",
"test": "mocha --exit",
"lint": "eslint src"
},
"author": "Eric Mathison <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@maxmind/geoip2-node": "^1.4.0",
"cors": "^2.8.5",
"countries-list": "^2.5.6",
"express": "^4.17.1",
"lodash": "^4.17.19",
"luxon": "^1.24.1",
"morgan": "^1.10.0",
"node-cron": "^2.0.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"serve-favicon": "^2.5.0",
"tar": "^6.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^7.1.2",
"prettier": "^2.0.5"
},
"husky": {
"pre-commit": "npm run lint && lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}