-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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": "ynab-validate",
"version": "1.0.0",
"description": "ynab-validate",
"main": "index.ts",
"bin": {
"ynab-validate": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"start": "node dist/index.js"
},
"author": {
"name": "Sathyajith Bhat",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@honeycombio/opentelemetry-node": "^0.7.2",
"@opentelemetry/auto-instrumentations-node": "^0.46.0",
"cron": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"loglevel": "^1.8.1",
"prom-client": "^14.2.0",
"source-map-support": "^0.5.21",
"ynab": "^2.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.11.3",
"@types/node-schedule": "^2.1.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}