Files
fakemoney/package.json
2026-03-07 00:43:40 +01:00

26 lines
610 B
JSON

{
"name": "fakemoney",
"version": "0.0.1",
"description": "Fake Money Payment Processor",
"license": "GPL-3.0",
"author": "",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "npm run dev --workspace=server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"workspaces": [
"client",
"server"
],
"devDependencies": {
"@types/node": "^25.3.2",
"concurrently": "^9.2.1",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}