You have 2 typos. No space in xe and use capital E not e - or better Exp[x]
You have nicely behaving functions, so this would work:
f[x_] := x Exp[-x]
Table[D[f[x], {x, n}] /. x -> 0, {n, 1, 5}]
{1, -2, 3, -4, 5}
But this is dangerous and it is better to use this:
f[x_] := x Exp[-x]
Table[Limit[D[f[x], {x, n}], x -> 0], {n, 1, 5}]
{1, -2, 3, -4, 5}
To illustrate, imagine you have other function:
f[x_] := SinIntegral[x]
Table[D[f[x], {x, n}], {n, 1, 5}] // FullSimplify // Column

Using /.x- > 0 will now give error due to x in denominator, while Limit is fine:
f[x_] := SinIntegral[x]
Table[Limit[D[f[x], {x, n}], x -> 0], {n, 1, 5}]
{1, 0, -(1/3), 0, 1/5}