My company uses Smalltalk (Squeak and Pharo) for both websites and custom applications.
The websites include web-based CMS systems and in-house applications for Logistic companies, for example managing their Goods-In flow to their warehouse.
The custom applications include software to drive the hardware of a remote-locker-based distributed delivery logistics model, providing application intelligence and communication to a central system, and thus live track and trace.
The cons main con to Smalltalk are is really the lack of familiarity with it and therefore the relative lack of programmers out there. On the other hand, Smalltalk programmers tend to be a self-selecting subset: most of them are very good!
It's true that the lack of native multi-threading may become an issue as CPUs gain more and more cores. On the other hand, I'm sure that'll be something being looked at by VM developers pretty soon. Meanwhile green threads do the job.
The pros are manifold: A tightly integrated environment complete with refactoring, the most highly expressive language I've ever come across, true Object Oriented programming, true reflection, minimal keywords, helpful community, etc.
Those who state the lack of type-checking is a problem are (in my opinion) badly mistaken. Ruby shares this "problem", but really to develop any non-trivial system without enough automated test coverage to highlight incorrect message sends (whether typos or even the wrong messages) is simply irresponsible.
As others have mentioned above, any IDE worth its salt will also tell you that you're trying to use an unavailable keyword.
So: I love Smalltalk. Every time I program in it, it feels "right". Whenever I go back to any other environment, I feel constricted and channeled into the way the language designers intended me to work.
That's the mark of a great programming language and environment: it gets out of the way and lets you solve the business problems you need to.
