This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.43 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
{
"name": "@makenew/nodejs-app",
"version": "4.0.4",
"description": "Package skeleton for a Node.js microservice.",
"type": "module",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"koa",
"node"
],
"homepage": "https://github.com/makenew/nodejs-app",
"bugs": "https://github.com/makenew/nodejs-app/issues",
"repository": "makenew/nodejs-app",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"index.js",
"server.js",
"server",
"config/!(env|local)*",
"lib",
"data",
"docs",
"!**/*.spec.js"
],
"scripts": {
"test": "c8 ava",
"pretest": "node index.js",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"test:smoke": "SMOKE_TEST=true c8 ava",
"test:smoke:update": "SMOKE_TEST=true ava --update-snapshots",
"test:smoke:watch": "SMOKE_TEST=true ava --watch",
"test:smoke:debug": "SMOKE_TEST=true ava debug --break",
"lint": "eslint --ignore-path .gitignore --ext .js,.cjs,.mjs .",
"prelint": "prettier --check --ignore-path .gitignore .",
"postversion": "git push --follow-tags",
"example": "node examples",
"example:inspect": "node --inspect examples",
"server": "node server.js",
"server:watch": "nodemon server.js",
"server:inspect": "node --inspect server.js",
"server:inspect:watch": "nodemon --inspect server.js",
"server:test": "NODE_ENV=test node server.js",
"server:test:watch": "NODE_ENV=test nodemon server.js",
"server:test:inspect": "NODE_ENV=test node server.js",
"server:test:inspect:watch": "NODE_ENV=test nodemon --inspect server.js",
"format": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.mjs .",
"preformat": "prettier --write --ignore-path .gitignore .",
"report": "c8 report"
},
"engines": {
"node": ">=18.12.0",
"npm": ">= 8.1.0"
},
"dependencies": {
"@meltwater/mlabs-health": "^2.1.0",
"@meltwater/mlabs-koa": "^12.0.0",
"awilix": "^7.0.1",
"koa": "^2.5.0",
"prom-client": "^14.0.0"
},
"devDependencies": {
"@meltwater/examplr": "^7.0.0",
"ava": "^5.2.0",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^17.0.0",
"nodemon": "^2.0.1",
"prettier": "^2.3.0"
}
}