-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
149 lines (149 loc) · 4.58 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@jmilanes/hotbars",
"description": "A modern hot reloading server highly configurable using express and handlebars for simple and fast website and applications development.",
"version": "1.8.5",
"main": "dist/index.js",
"bin": {
"hotbars": "dist/cli.js"
},
"type": "commonjs",
"author": "Jair Milanes",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/jairmilanes/hotbars"
},
"scripts": {
"watch": "node ./scripts/watch.js watch",
"lint": "eslint src/ --fix",
"format": "prettier . --write",
"runtime:bundle": "browserify ./dist/client/_public/bundles/dashboard.runtime.js -o ./dist/client/_public/bundles/dashboard.bundle.js --external=Handlebars --ignore=Handlebars",
"runtime:uglify": "uglifyjs --compress --mangle --source-map --output ./dist/client/_public/bundles/dashboard.bundle.min.js ./dist/client/_public/bundles/dashboard.bundle.js",
"bundle": "npm run bundle && npm run uglify",
"copy": "copyfiles -u 1 \"./src/client/**/*.*\" dist",
"build": "tsc -p ./tsconfig.app.json",
"postbuild": "npm run copy && npm run runtime:bundle && npm run runtime:uglify",
"test": "jest --runInBand --detectOpenHandles"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"apicache": "^1.6.3",
"app-root-path": "^3.1.0",
"bcryptjs": "^2.4.3",
"browserify": "^17.0.0",
"chokidar": "^3.5.3",
"clsx": "^1.2.1",
"commander": "^9.4.1",
"compression": "^1.7.4",
"connect-sqlite3": "^0.9.13",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cosmiconfig": "^7.0.1",
"day-log-savings": "^1.0.4",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "4.18.2",
"express-rate-limit": "^6.6.0",
"express-session": "^1.17.3",
"express-urlrewrite": "^2.0.0",
"express-validator": "^6.14.2",
"express-ws": "^5.0.2",
"fake-smtp-server": "^0.8.0",
"figlet": "^1.5.2",
"front-matter": "^4.0.2",
"glob": "^8.0.3",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"handlebars-layouts": "^3.1.4",
"handlebars-wax": "^6.1.0",
"import-fresh": "^3.3.0",
"json-server": "^0.17.1",
"lodash": "^4.17.21",
"lodash-id": "^0.14.1",
"lowdb": "^1.0.0",
"mailparser": "^3.5.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"nodemailer": "^6.8.0",
"open": "^8.4.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"@jmilanes/passport-remember-me": "^0.1.2",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"sass-graph": "^4.0.1",
"serve-favicon": "^2.5.0",
"slugify": "^1.6.5",
"smtp-server": "^3.11.0",
"source-map-js": "^1.0.2",
"uglify-js": "^3.17.4",
"ws": "^7.4.0"
},
"devDependencies": {
"@handlebars/parser": "^2.1.0",
"@types/apicache": "^1.6.1",
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/browserify": "^12.0.37",
"@types/chokidar": "^2.1.3",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/express-urlrewrite": "^1.3.0",
"@types/express-ws": "^3.0.1",
"@types/glob": "^8.0.0",
"@types/handlebars": "^4.1.0",
"@types/handlebars-helpers": "^0.5.3",
"@types/jest": "^29.2.3",
"@types/json-server": "^0.14.4",
"@types/lodash": "^4.14.189",
"@types/lowdb": "^1.0.11",
"@types/mailparser": "^3.4.0",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.3",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.6",
"@types/open": "^6.2.1",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/prettier": "^2.7.1",
"@types/sass": "^1.43.1",
"@types/sass-graph": "^2.1.3",
"@types/serve-favicon": "^2.5.3",
"@types/smtp-server": "^3.5.7",
"@types/uglify-js": "^3.17.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"copyfiles": "^2.4.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.5.5"
},
"optionalDependencies": {
"@supabase/supabase-js": "^2.1.0"
},
"files": [
"./dist"
],
"keywords": [
"handlebars",
"hot-reload",
"cli",
"console",
"terminal",
"templates",
"boilerplates",
"command-line"
]
}