-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "simple-cron",
"version": "0.1.0",
"private": true,
"description": "Dead simple cron service.",
"repository": "saasify-sh/simple-cron",
"author": "Saasify <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "node build/server.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/server.ts",
"predev": "run-s build:routes",
"clean": "del build dist",
"build": "run-s build:*",
"prebuild": "run-s clean",
"build:swagger": "tsoa swagger",
"build:routes": "tsoa routes",
"build:ts": "tsc",
"test": "run-s build",
"deploy": "now --prod",
"predeploy": "run-s build",
"postdeploy": "now rm --safe --yes simple-cron"
},
"dependencies": {
"@google-cloud/firestore": "^3.7.3",
"@google-cloud/logging": "^7.3.0",
"@google-cloud/monitoring": "^1.7.0",
"@google-cloud/scheduler": "^1.6.0",
"@koa/cors": "^3.0.0",
"@slack/webhook": "^5.0.3",
"date-fns": "^2.11.1",
"dotenv": "^8.2.0",
"grpc": "^1.24.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^3.0.0",
"koa-router": "^8.0.8",
"lodash.pick": "^4.4.0",
"mailgun-js": "^0.22.0",
"p-map": "^4.0.0",
"pify": "^5.0.0",
"remark-html": "^11.0.1",
"remark-parse": "^8.0.0",
"saasify-provider-sdk": "^1.18.10",
"tsoa": "^2.5.13",
"unified": "^9.0.0"
},
"devDependencies": {
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compress": "^2.0.9",
"@types/koa-router": "^7.4.0",
"@types/koa__cors": "^3.0.1",
"@types/lodash.pick": "^4.4.6",
"@types/mailgun-js": "^0.22.4",
"@types/node": "^13.11.1",
"@types/p-map": "^2.0.0",
"@types/pify": "^3.0.2",
"cross-env": "^7.0.2",
"del-cli": "^3.0.0",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}