Files
trailbase/examples/tutorial/scripts/package.json
Sebastian Jeltsch bdb3735840 Squash all commits for a fresh start.
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
2024-10-30 23:38:56 +01:00

27 lines
634 B
JSON

{
"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": {
"@eslint/js": "^9.13.0",
"@types/node": "^22.8.2",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"quicktype": "^23.0.170",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1"
},
"dependencies": {
"csv-parse": "^5.5.6",
"trailbase": "workspace:*"
}
}