-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "ip-lookup.js",
"version": "0.0.1",
"description": "IP Lookup Challenge",
"keywords": [
"circuitbreaker",
"ip2location",
"caching",
"rate-limiter"
],
"repository": {
"type": "git",
"url": "https://github.com/danielnegri/ip-lookup.js"
},
"author": "Daniel Negri <[email protected]>",
"license": "AGPL-3.0",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "nodemon --inspect -w src bin/www",
"start": "node bin/www",
"lint": "eslint .",
"format": "prettier --write \"**/*.js\"",
"test": "yarn run test:coverage && yarn run test:e2e",
"test:coverage": "yarn run test:unit --coverage",
"test:e2e": "FORCE_COLOR=true jest --config jest.config.e2e.js --verbose --runInBand --testRunner=jest-circus/runner --forceExit --detectOpenHandles",
"test:unit": "jest --verbose"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"limiter": "^2.1.0",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"opossum": "^7.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"axios-mock-adapter": "^1.21.5",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.6.1",
"jest-circus": "^29.6.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.2",
"supertest": "^6.3.3"
}
}