-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "geolite",
"version": "1.0.0",
"description": "heatmap utility",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest",
"e2e": "jest --config=./jest.config.e2e.json --forceExit --detectOpenHandles --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benconley/geolite.git"
},
"author": "Ben Conley",
"license": "ISC",
"bugs": {
"url": "https://github.com/benconley/geolite/issues"
},
"homepage": "https://github.com/benconley/geolite#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"boom": "^7.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-async-handler": "^1.1.4",
"joi": "^14.3.1",
"knex": "^2.4.0",
"knex-paginator": "^2.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"path": "^0.12.7",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^26.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.1.0",
"mock-knex": "^0.4.9",
"proxyquire": "^2.1.3",
"supertest": "^4.0.2",
"tiny-async-pool": "^1.1.0"
}
}