-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "geonames-api-node",
"version": "1.0.9",
"description": "Example o using Node.JS with mongodb",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prod": "NODE_PATH=. NODE_ENV=production node index.js",
"dev": "NODE_PATH=. NODE_ENV=development nodemon index.js",
"stage": "NODE_PATH=. NODE_ENV=staging node index.js",
"release": "git pull && release-it --no-npm.publish",
"patch": "git pull && release-it patch --no-npm.publish",
"minor": "git pull && release-it minor --no-npm.publish",
"major": "git pull && release-it major --no-npm.publish",
"lint": "./node_modules/.bin/eslint src/*",
"lint-fix": "./node_modules/.bin/eslint --fix src/*",
"test": "NODE_ENV=test jest --detectOpenHandles --forceExit --unhandled-rejections=strict",
"test-ci": "NODE_ENV=test jest --coverage=false --detectOpenHandles --forceExit --unhandled-rejections=strict"
},
"keywords": [],
"author": {
"name": "Mario Costa",
"email": "[email protected]"
},
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=12"
},
"dependencies": {
"ajv": "^6.12.3",
"awilix": "4.2.6",
"awilix-koa": "^4.0.0",
"csv-parser": "^2.3.2",
"dotenv": "^8.2.0",
"hal": "^1.2.0",
"http-status": "^1.4.2",
"is-uuid": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-compress": "^3.1.0",
"koa-helmet": "^5.2.0",
"koa-locales": "^1.12.0",
"koa-logger": "^3.2.1",
"koa-mongo-crud": "^1.2.5",
"koa-qs": "^3.0.0",
"koa-ratelimit": "^4.2.1",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"koa2-swagger-ui": "^3.0.0",
"koa2-useragent": "^0.3.2",
"lodash": "^4.17.15",
"lodash.has": "^4.5.2",
"lodash.partition": "^4.6.0",
"log4js": "^6.2.1",
"moment": "^2.29.2",
"mongodb": "3.1.13",
"newrelic": "^6.6.0",
"objects-to-csv": "^1.3.6",
"query-string": "^6.12.1",
"request": "^2.88.2",
"supertest": "^4.0.2",
"uuid": "^8.0.0",
"validator": "^13.1.1"
},
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "*",
"axios": "^0.28.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"commander": "^9.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jest-formatting": "^1.2.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^4.2.3",
"jest": "^25.4.0",
"jest-junit": "^10.0.0",
"jest-stare": "^2.0.0",
"lint-staged": "^10.1.7",
"lodash.defaultsdeep": "^4.6.1",
"nodemon": "^2.0.20",
"prettier": "^2.0.5",
"release-it": "^15.6.0",
"superagent-defaults": "^0.1.14",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}