-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "visa-appointment-tracker",
"version": "0.1.0",
"main": "./dist/src/index.js",
"repository": "https://github.com/dhyegocalota/visa-appointment-tracker",
"author": "Dhyego Calota <dhyegofernando@gmail.com>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"serve": "NODE_ENV=development nodemon --watch './' --exec 'ts-node -r tsconfig-paths/register --files ./src/bin/cron.ts' -e ts",
"start": "pm2-runtime start ./dist/bin/cron.js --env production",
"build": "ttsc"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.7",
"@types/node-cron": "^3.0.1",
"logform": "^2.4.0",
"nodemon": "^2.0.16",
"ts-node": "^10.8.1",
"tsconfig-paths": "^3.12.0",
"ttypescript": "^1.5.13",
"typescript": "^4.7.3",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.3",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"eta": "^1.12.3",
"lodash.merge": "^4.6.2",
"node-cron": "^3.0.1",
"pm2": "^5.2.0",
"puppeteer": "^12.0.1",
"safe-stable-stringify": "^2.3.1",
"twilio": "^3.77.2",
"uuid": "^8.3.2",
"winston": "^3.7.2"
}
}