trailbase/examples/tutorial/scripts/package.json

27 lines
634 B
JSON
Raw Normal View History

{
"name": "examples_tutorial_scripts",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"build": "tsc",
"format": "prettier -w src",
"read": "tsc && node dist/src/index.js",
"fill": "tsc && node dist/src/fill.js",
"check": "tsc --noEmit --skipLibCheck && eslint"
},
"devDependencies": {
2024-11-08 20:36:38 +00:00
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"quicktype": "^23.0.170",
"typescript": "^5.6.3",
2024-11-08 20:36:38 +00:00
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"csv-parse": "^5.5.6",
"trailbase": "workspace:*"
}
}