aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-12-02 00:29:06 +0300
committereug-vs <eug-vs@keemail.me>2020-12-02 00:29:06 +0300
commitfc3701733fca3fccd8330aaa5095fdcd82daf2b7 (patch)
tree238dff76d3f9fb323939db2e718f8087fd854871 /package.json
parent40775a74b75ad3f5e0cc1508f4c8eca029024c6b (diff)
downloadmongo-cronjob-fc3701733fca3fccd8330aaa5095fdcd82daf2b7.tar.gz
chore: initialize project
Diffstat (limited to 'package.json')
-rw-r--r--package.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..0524654
--- /dev/null
+++ b/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "mongo-cronjob",
+ "version": "0.0.0",
+ "description": "Cron-based job scheduler integrated with mongoDB",
+ "main": "index.js",
+ "scripts": {
+ "start": "node index.js"
+ },
+ "author": "eug-vs",
+ "license": "MIT",
+ "dependencies": {
+ "cron": "^1.8.2",
+ "mongoose": "^5.11.1"
+ },
+ "devDependencies": {
+ "@types/cron": "^1.7.2",
+ "typescript": "^4.1.2"
+ }
+}