-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "cron-dynamically",
"version": "1.0.0",
"description": "A lab for load the cron schedule job dynamically",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ming-tsai/cron-dynamically.git"
},
"keywords": [
"cron",
"dynamically",
"yaml"
],
"author": "Ming Tsai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ming-tsai/cron-dynamically/issues"
},
"homepage": "https://github.com/ming-tsai/cron-dynamically#readme",
"dependencies": {
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"fs": "0.0.1-security",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.0",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"ts-node": "^10.0.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/js-yaml": "^4.0.1",
"@types/node": "^15.6.1",
"@types/node-cron": "^2.0.3",
"@types/uuid": "^8.3.0"
}
}