-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.21 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.21 KB
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
{
"name": "@haxtheweb/haxcms-nodejs",
"version": "26.0.1",
"publishConfig": {
"access": "public"
},
"description": "HAXcms single and multisite nodejs server, api, and administration",
"main": "dist/index.js",
"icon": "./dist/favicon.ico",
"scripts": {
"dev:build": "npm run build && nodemon dist/app.js",
"dev": "nodemon src/app.js",
"dev:nologin": "nodemon src/local.js",
"start": "open http://localhost:3000 && npm run dev",
"build": "rm -rf dist && babel src --out-dir dist --copy-files --include-dotfiles && chmod 774 dist/local.js && chmod 774 dist/app.js && chmod 774 dist/cli.js",
"release": "npm run build && commit-and-tag-version && git push --follow-tags origin main && npm publish",
"haxcms-nodejs-cli": "haxcms-nodejs-cli"
},
"repository": {
"type": "git",
"url": "https://github.com/haxtheweb/haxcms-nodejs.git"
},
"bugs": {
"url": "https://github.com/haxtheweb/issues/issues"
},
"bin": {
"haxcms-nodejs": "./dist/local.js",
"haxcms-nodejs-cli": "./dist/cli.js"
},
"files": [
"dist"
],
"homepage": "https://hax.psu.edu/",
"keywords": [
"haxtheweb",
"haxcms",
"haxsite",
"htw",
"webcomponents",
"lit"
],
"author": "HAXTheWeb core team",
"license": "Apache-2.0",
"engines": {
"node": ">=18.20.3"
},
"dependencies": {
"archiver": "8.0.0",
"axios": "^1.16.0",
"chokidar": "5.0.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"dotenv": "16.4.5",
"express": "^4.22.2",
"fs-extra": "11.2.0",
"git-interface": "2.1.2",
"helmet": "7.1.0",
"js-yaml": "4.1.1",
"jsonwebtoken": "9.0.3",
"locutus": "^3.0.34",
"mime": "3.0.0",
"minimist": "1.2.8",
"multer": "2.1.1",
"node-html-parser": "7.1.0",
"open": "8.4.2",
"sharp": "0.32.6",
"turndown": "7.1.1",
"twig": "^3.0.0",
"utf8": "3.0.0",
"uuid": "11.1.1",
"ws": "8.20.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.5",
"@babel/register": "7.29.3",
"babel-plugin-transform-dynamic-import": "2.1.0",
"commit-and-tag-version": "12.7.3",
"nodemon": "3.1.14"
}
}