Racket doesn't have them, a simple way to define them is:
;; decrement operator
(define (-1+ x)
(- x 1))
;; increment operator
(define (1+ x)
(+ x 1))
The solutions above are correct, but indirect. The question is primarily about -1+ and 1+.