-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "metarank-lambda-tracker",
"version": "0.0.1",
"description": "Tracks usage statistics for Metarank",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/eslint .",
"update-geo-db": "cd node_modules/geoip-country && npm run-script updatedb"
},
"keywords": [
"metarank",
"machine learning"
],
"author": "Vsevolod Goloviznin <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/aws-lambda": "^8.10.102",
"@types/geoip-country": "^4.0.0",
"@types/node": "^18.7.14",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.8.2"
},
"dependencies": {
"aws-sdk": "^2.1206.0",
"geoip-country": "^4.1.20",
"moment": "^2.29.4",
"uuid": "^8.3.2"
}
}