-
Notifications
You must be signed in to change notification settings - Fork 497
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.1 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
{
"name": "crontab-ui",
"version": "0.4.2",
"description": "Easy and safe way to manage your crontab file",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint ."
},
"dependencies": {
"@seald-io/nedb": "^4.1.2",
"connect-busboy": "^1.0.0",
"cron-parser": "^5.5.0",
"cronstrue": "^3.14.0",
"dayjs": "^1.11.20",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"mime-types": "^3.0.2",
"nodemailer": "^8.0.5"
},
"devDependencies": {
"eslint": "^9.0.0",
"globals": "^16.0.0",
"prettier": "^3.5.0",
"supertest": "^7.1.0",
"vitest": "^3.1.0"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"crontab-ui": "bin/crontab-ui.js",
"crontab-ui-mailer": "bin/crontab-ui-mailer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alseambusher/crontab-ui"
},
"keywords": [
"Crontab",
"node"
],
"author": "Suresh Alse",
"license": "MIT"
}