Files
sf-sim/package.json

42 lines
978 B
JSON
Raw Normal View History

2026-01-07 16:47:14 +01:00
{
"name": "sim-eventos",
2026-01-08 13:36:52 +01:00
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest watch",
"build": "npx tsc",
"start": "node dist/index.js",
"typecheck": "npx tsc --noEmit",
"dev": "yarn workspaces foreach -Apiv run dev ",
2026-01-08 13:36:52 +01:00
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@tsconfig/node22": "^22.0.5",
2026-01-26 15:04:17 +01:00
"axios": "^1.13.3",
2026-01-08 13:36:52 +01:00
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
2026-01-27 10:00:51 +01:00
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.5"
2026-01-08 13:36:52 +01:00
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"concurrently": "^9.2.1",
2026-01-08 13:36:52 +01:00
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"tsx": "^4.21.0",
"vitest": "^4.0.16"
},
"imports": {
"#*": "./src/*"
}
2026-01-07 16:47:14 +01:00
}