-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
{
"name": "express-example",
"description": "This repository is just for example purposes.",
"private": true,
"version": "0.0.0",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/breejs/express-example/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"dependencies": {
"@ladjs/graceful": "^1.0.3",
"body-parser": "^1.19.0",
"bree": "^1.1.13",
"cabin": "^8.0.4",
"crypto-random-string": "^3.2.0",
"dayjs": "^1.8.29",
"email-templates": "^7.1.0",
"express": "^4.17.1",
"express-request-id": "^1.4.1",
"is-string-and-not-blank": "^0.0.2",
"request-received": "^0.0.3",
"response-time": "^2.3.2",
"signale": "^1.4.0",
"validator": "^13.1.1"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"cross-env": "latest",
"eslint": "6.x",
"eslint-config-xo-lass": "latest",
"fixpack": "latest",
"husky": "latest",
"lint-staged": "latest",
"remark-cli": "latest",
"remark-preset-github": "latest",
"xo": "0.25"
},
"engines": {
"node": ">= 12.11.0"
},
"homepage": "https://github.com/breejs/express-example",
"keywords": [
"express-example",
"lass"
],
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/breejs/express-example"
},
"scripts": {
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"test": "yarn run lint"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
]
}
}