-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "geoip-serverless",
"version": "0.0.1",
"description": "Serverless GeoIP API based on Maxmind's data",
"main": "handler.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"lintfix": "eslint --fix",
"deploy": "npm run lint && sls -s production deploy",
"dev": "npm run lint && sls deploy"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.8",
"aws-sdk": "^2.1012.0",
"babel-core": "^6.26.0",
"babel-loader": "^8.2.3",
"babel-plugin-source-map-support": "^2.1.3",
"babel-preset-env": "^1.6.1",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"serverless": "^2.72.4",
"serverless-api-cloudfront": "^0.9.5",
"serverless-webpack": "^5.5.5",
"webpack": "^5.76.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"adm-zip": "^0.4.16",
"csvjson": "^5.1.0",
"csvtojson": "^2.0.10",
"dateformat": "^5.0.2",
"got": "^11.8.5",
"ip": "^1.1.5",
"original-fs": "^1.1.0",
"rimraf": "^3.0.2",
"url-to-options": "^2.0.0"
}
}