-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 2.93 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@ladjs/web",
"description": "Web server for Lad",
"version": "21.0.20",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/ladjs/web/issues",
"email": "niftylettuce@gmail.com"
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
],
"dependencies": {
"@koa/router": "^12.0.1",
"@ladjs/i18n": "^8.0.3",
"@ladjs/koa-better-static": "^2.0.1",
"@ladjs/koa-cache-responses": "^0.0.3",
"@ladjs/koa-isajax": "^2.0.0",
"@ladjs/koa-simple-ratelimit": "^4.1.1",
"@ladjs/koa-views": "^9.0.0",
"@ladjs/passport": "^5.1.4",
"@ladjs/redis": "^1.1.1",
"@ladjs/shared-config": "^9.1.4",
"@ladjs/state-helper": "^3.0.1",
"@ladjs/store-ip-address": "^0.0.7",
"axe": "^12.2.9",
"boolean": "^3.2.0",
"cabin": "^13.2.8",
"crypto-random-string": "3",
"express-request-id": "1.4.1",
"is-string-and-not-blank": "^0.0.2",
"kcors": "^2.2.2",
"koa": "^2.15.3",
"koa-404-handler": "^0.1.0",
"koa-basic-auth": "^4.0.0",
"koa-better-error-handler": "^11.0.4",
"koa-better-flash": "^0.0.4",
"koa-better-timeout": "^0.0.6",
"koa-bodyparser": "^4.4.1",
"koa-cash": "^4.1.1",
"koa-compress": "^5.1.1",
"koa-conditional-get": "^3.0.0",
"koa-connect": "^2.1.0",
"koa-etag": "^4.0.0",
"koa-favicon": "^2.1.0",
"koa-generic-session": "^2.3.1",
"koa-helmet": "5",
"koa-json": "^2.0.2",
"koa-meta": "^4.0.2",
"koa-methodoverride": "^2.0.0",
"koa-redirect-loop": "^3.0.2",
"koa-redis": "^4.0.1",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"request-received": "^0.0.3",
"response-time": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "5",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^9.0.11",
"ioredis": "^5.4.1",
"ioredis-mock": "^8.9.0",
"lint-staged": "^15.2.7",
"nyc": "^15.1.0",
"pug": "^3.0.3",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"supertest": "^6.3.4",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"homepage": "https://github.com/ladjs/web",
"keywords": [
"boilerplate",
"express",
"framework",
"h5bp",
"http",
"koa",
"lad",
"lass",
"mean",
"pug",
"server",
"stack",
"web"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"axe": ">= 11",
"cabin": ">= 11"
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/web"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}