-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "@inventage/wicket-static-server",
"version": "1.1.5",
"description": "Resolve Wicket's template hierarchy and render all HTML parts as single static pages.",
"main": "server.js",
"scripts": {
"serve": "node server.js --server",
"format": "npx prettier --write . && npx eslint --fix --ignore-pattern **/*.json",
"publish": "np",
"test": "echo \"No test specified\"",
"prepare": "husky install"
},
"author": {
"name": "Gridonic",
"email": "hello@gridonic.ch",
"url": "https://gridonic.ch"
},
"contributors": [
{
"name": "Peter Siska",
"email": "peter.siska@inventage.com",
"url": "https://inventage.com/"
},
{
"name": "Niklaus Hug",
"email": "niklaus.hug@inventage.com",
"url": "https://inventage.com/"
}
],
"bin": {
"wicket-static-server": "./bin/server.js"
},
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"compression": "^1.7.4",
"connect-timeout": "^1.9.0",
"ejs": "^3.1.10",
"express": "^4.18.2",
"glob": "^10.3.10",
"marked": "^11.1.1",
"recursive-readdir-sync": "^1.0.6",
"serve-index": "^1.9.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"np": "^9.2.0",
"prettier": "^3.1.1"
},
"lint-staged": {
"*": "npx prettier --write",
"*.js": "npx eslint --fix"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
}
}