Files
noahspan-root/api/package.json
2025-01-21 12:43:04 -06:00

22 lines
471 B
JSON

{
"name": "api",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "echo \"No tests yet...\""
},
"dependencies": {
"@azure/functions": "^4.0.0"
},
"devDependencies": {
"@types/node": "^18.x",
"typescript": "^4.0.0",
"rimraf": "^5.0.0"
},
"main": "dist/src/functions/*.js"
}