-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
{
"name": "@haxtheweb/haxcms-nodejs",
"version": "10.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",
"start": "open http://localhost:3000 && npm run dev HAXCMS_DISABLE_JWT_CHECKS",
"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": "7.0.1",
"axios": "1.7.8",
"cookie-parser": "1.4.6",
"dotenv": "16.4.5",
"express": "4.19.2",
"fs-extra": "11.2.0",
"git-interface": "2.1.2",
"helmet": "7.1.0",
"jsonwebtoken": "9.0.2",
"locutus": "2.0.32",
"mime": "3.0.0",
"minimist": "1.2.8",
"multer": "1.4.5-lts.1",
"open": "8.4.2",
"sharp": "^0.33.4",
"twig": "1.17.1",
"utf8": "3.0.0",
"uuid": "10.0.0",
"yaml": "2.4.5"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/register": "^7.24.6",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"commit-and-tag-version": "12.4.1",
"connect-livereload": "0.6.1",
"livereload": "0.9.3",
"nodemon": "3.1.4"
}
}